chore(deps): update yarn to v3.8.0 #736
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
name: TESTS | |
on: | |
push: | |
branches: | |
- "**" | |
pull_request: | |
types: [ ready_for_review, synchronize, opened ] | |
jobs: | |
test: | |
name: TEST PROTOKOL SETS | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [ 12.x, 13.x, 14.x ] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install And Build | |
run: yarn && yarn build | |
- name: Test sets | |
run: cd packages/sets && yarn test |