fix(deps): update all non-major dependencies #938
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: | |
branches: [dev] | |
pull_request: | |
jobs: | |
Linting: | |
name: Linting | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Project | |
uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # tag=v3 | |
- name: Add problem matcher | |
run: echo "::add-matcher::.github/problemMatchers/eslint.json" | |
- name: Use Node.js v16 | |
uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # tag=v3 | |
with: | |
node-version: 16 | |
- name: Restore CI Cache | |
uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # tag=v3 | |
id: cache-restore | |
with: | |
path: node_modules | |
key: ${{ runner.os }}-16-${{ hashFiles('**/yarn.lock') }} | |
- name: Install Dependencies if Cache Miss | |
if: ${{ !steps.cache-restore.outputs.cache-hit }} | |
run: yarn --immutable | |
- name: Run ESLint | |
run: yarn lint --fix=false | |
Build: | |
name: Compile source code | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Project | |
uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # tag=v3 | |
- name: Add problem matcher | |
run: echo "::add-matcher::.github/problemMatchers/tsc.json" | |
- name: Use Node.js v16 | |
uses: actions/setup-node@eeb10cff27034e7acf239c5d29f62154018672fd # tag=v3 | |
with: | |
node-version: 16 | |
- name: Restore CI Cache | |
uses: actions/cache@fd5de65bc895cf536527842281bea11763fefd77 # tag=v3 | |
id: cache-restore | |
with: | |
path: node_modules | |
key: ${{ runner.os }}-16-${{ hashFiles('**/yarn.lock') }} | |
- name: Install Dependencies if Cache Miss | |
if: ${{ !steps.cache-restore.outputs.cache-hit }} | |
run: yarn --immutable | |
- name: Build Code | |
run: yarn build |