Skip to content

Next

Next #12

Workflow file for this run

name: CI/CD
on:
push:
branches: [main, next]
pull_request:
branches: [main, next]
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/setup
- run: yarn test --coverage
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: coverage/lcov.info
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/setup
- name: ESLint
run: yarn lint:eslint
- name: Prettier
run: yarn lint:prettier
- name: Types
run: yarn tsc
build:
name: Build
runs-on: ubuntu-latest
needs: [test, lint]
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/setup
- name: Build
run: yarn build
- name: Release
run: yarn semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
# docs:
# name: Docs
# runs-on: ubuntu-latest
# needs: [test, lint]
# steps:
# - uses: actions/checkout@v3
# - uses: ./.github/actions/setup
# - name: Generate
# run: yarn docs
# - name: Publish
# uses: peaceiris/actions-gh-pages@v3
# if: ${{ github.ref == 'refs/heads/main' }}
# with:
# github_token: ${{ secrets.GITHUB_TOKEN }}
# publish_dir: ./docs