Release v2.1.1 #29
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow will do a clean install of node dependencies, lint the source code and run tests | |
name: Continuous Integration | |
on: pull_request | |
jobs: | |
test-and-lint: | |
name: Run tests and lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install node | |
uses: actions/setup-node@v1 | |
with: | |
node-version: '12.x' | |
- run: yarn install | |
- run: yarn lint | |
- run: yarn typecheck | |
- run: yarn test | |
- run: yarn audit --groups dependencies | |
- run: yarn build |