Skip to content

Merge pull request #1 from TomokiMiyauci/beta #8

Merge pull request #1 from TomokiMiyauci/beta

Merge pull request #1 from TomokiMiyauci/beta #8

Workflow file for this run

name: release
on:
push:
branches:
- beta
- main
jobs:
lint:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
deno: [v1.x]
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: denoland/setup-deno@v1
with:
deno-version: ${{ matrix.deno }}
- name: Lint
run: |
deno fmt --check
deno lint
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
deno: [v1.x]
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: denoland/setup-deno@v1
with:
deno-version: ${{ matrix.deno }}
- name: Test
run: deno task test --coverage=coverage
- name: Generate coverage
if: ${{ matrix.deno == 'v1.x' }}
run: deno coverage coverage --output=cov_profile.lcov --lcov
- uses: codecov/codecov-action@v3
if: ${{ matrix.deno == 'v1.x' }}
with:
files: cov_profile.lcov
release:
needs: [lint, test]
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
steps:
- name: Checkout
uses: actions/checkout@v3
with:
token: ${{ secrets.GH_TOKEN }}
- uses: cycjimmy/semantic-release-action@v3
with:
extra_plugins: |
@semantic-release/changelog
@semantic-release/git
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}