Bump axios from 1.2.1 to 1.6.0 #899
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: Run Tests | |
concurrency: | |
group: run-tests-${{ github.head_ref }} | |
cancel-in-progress: true | |
on: | |
pull_request: | |
branches: [master] | |
jobs: | |
run-tests: | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
- name: Set up dependencies | |
env: | |
YARN_ENABLE_COLORS: false | |
YARN_ENABLE_PROGRESS_BARS: false | |
run: | | |
yarn | |
- name: Run tests | |
run: | | |
set -ex | |
yarn lint | |
yarn types | |
yarn test | |
[ -z "$(git status --porcelain)" ] |