Update dependency express to v4.20.0 [SECURITY] #2485
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: build | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: git fetch --prune --unshallow | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '22' | |
- name: cache node_modules | |
uses: actions/cache@v4 | |
with: | |
path: | | |
node_modules | |
*/*/node_modules | |
key: ${{ runner.os }}-node_modules-${{ hashFiles('**/yarn.lock') }} | |
restore-keys: ${{ runner.os }}-node_modules- | |
- run: yarn --frozen-lockfile | |
- run: yarn docs build | |
- run: yarn lerna run test | |
- uses: codecov/[email protected] | |
- run: yarn lerna run format-check | |
- run: yarn lerna run lint-check | |
- run: yarn lerna run build |