Skip to content

Release 2.0.1

Release 2.0.1 #175

Workflow file for this run

name: Test
on:
pull_request:
branches:
- "master"
- "chore/*"
- "build/*"
- "fix/*"
- "feat/*"
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "16"
cache: "yarn"
cache-dependency-path: yarn.lock
- name: install dependencies
run: yarn
- name: build
run: yarn build
- name: test
run: yarn test