Skip to content

🏗 Update publish.yml #3

🏗 Update publish.yml

🏗 Update publish.yml #3

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
name: Check TypeScript and Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '16'
cache: 'yarn'
- run: yarn install
- run: yarn build
- run: yarn check-types
- run: yarn test:ci
- uses: codecov/codecov-action@v2