update major version to prevent sentry and static-sites from using th… #257
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: test | |
on: [push] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: volta-cli/action@v1 | |
with: | |
cache: yarn | |
node-version: '14' | |
- name: Install Depdendencies | |
run: | | |
yarn install --frozen-lockfile | |
- name: Run tests | |
run: yarn test |