chore(deps): update all (major) #317
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 Application | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
types: [opened, reopened, synchronize] | |
jobs: | |
test: | |
name: Test Application | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/[email protected] | |
- name: Use Node 14 | |
uses: actions/[email protected] | |
with: | |
node-version: 14 | |
- name: Install dependencies with yarn | |
run: yarn install --frozen-lockfile | |
- name: Run test command | |
run: yarn test:ci |