chore(deps): update dependency next to v14.2.21 [security] #1241
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: ["0.x"] } | |
pull_request: { branches: ["0.x"] } | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: ".nvmrc" | |
cache: yarn | |
- name: Install dependencies | |
run: yarn install | |
- name: Lint | |
run: yarn lint | |
- name: Type Check | |
run: yarn build --noEmit | |
- name: Test & publish code coverage | |
uses: paambaati/codeclimate-action@v5.0.0 | |
env: | |
CC_TEST_REPORTER_ID: 8ebe93d320ffb11863c699cc0db2ab927e50d2f5b08a52ffaa240a63202ea48d | |
with: | |
coverageCommand: yarn test --coverage --maxWorkers=2 | |
debug: true |