build(deps-dev): bump axios from 1.5.0 to 1.6.1 #629
Workflow file for this run
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 | |
on: | |
push: | |
branches: ["master"] | |
pull_request: | |
branches: ["master"] | |
env: | |
NPM_TOKEN: "" | |
jobs: | |
run-tests: | |
name: Run Tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
name: Checkout to master | |
with: | |
ref: master | |
- uses: actions/setup-node@v3 | |
name: Setup Node.js | |
with: | |
node-version: 16 | |
cache: yarn | |
- uses: borales/[email protected] | |
name: Install dependencies | |
with: | |
cmd: install | |
- uses: borales/[email protected] | |
name: Run TypeScript check | |
with: | |
cmd: test:tsc | |
- uses: borales/[email protected] | |
name: Run unit tests | |
with: | |
cmd: test:unit | |
- uses: borales/[email protected] | |
name: Run linter | |
with: | |
cmd: test:lint |