Skip to content

Update all

Update all #189

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
run:
runs-on: ubuntu-latest
name: Build
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- run: yarn
- run: yarn build
- run: yarn lint
- run: yarn test-coverage
env:
COVERALLS_REPO_TOKEN: "${{ secrets.COVERALLS_TOKEN }}"