chore(deps): bump axios from 0.25.0 to 1.6.0 #994
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: CI | |
on: push | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js | |
uses: actions/setup-node@v1 | |
with: | |
node-version: "18.14.0" | |
- name: Install modules | |
run: yarn install | |
- name: Run lint for the client | |
run: yarn workspace ogre-client lint | |
- name: Run prettier for the client | |
run: yarn workspace ogre-client prettier:check | |
- name: Run type-check for the client | |
run: yarn workspace ogre-client check-type | |
- name: Run tests for the client | |
run: yarn workspace ogre-client test:no-watch | |
- name: Run lint for the server | |
run: yarn workspace ogre-server lint | |
- name: Run prettier for the server | |
run: yarn workspace ogre-server prettier:check | |
- name: Run type-check for the server | |
run: yarn workspace ogre-server check-type |