chore(deps): update dependency ws to v8.17.1 [security] #602
This file contains hidden or 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: Test | |
| on: pull_request | |
| jobs: | |
| test: | |
| name: Test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| with: | |
| persist-credentials: false | |
| # We need to fetch all branches and commits so that Nx affected has a base to compare against. | |
| fetch-depth: 0 | |
| - uses: nrwl/nx-set-shas@v3 | |
| - name: Setup pnpm | |
| uses: pnpm/action-setup@v2.2.4 | |
| id: pnpm-install | |
| with: | |
| version: 7 | |
| run_install: false | |
| - name: Node setup | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: 18 | |
| cache: 'pnpm' | |
| - name: Install dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Lint, Test, Build | |
| run: pnpm nx affected --targets=lint,test,build --parallel=3 --ci --code-coverage --prod |