Skip to content

ci(release): version 0.0.5 #20

ci(release): version 0.0.5

ci(release): version 0.0.5 #20

Workflow file for this run

---
name: Test
on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '18.x'
cache: 'yarn'
- name: yarn
run: yarn install --frozen-lockfile
- name: test
run: yarn test --coverage
- name: codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}