chore(deps): update dependency npm-run-all2 to v6.2.6 (#5797) #17369
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: Cross-Platform Test | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
concurrency: | |
group: cross-platform-${{ github.head_ref }} | |
cancel-in-progress: true | |
jobs: | |
suite: | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 30 | |
strategy: | |
matrix: | |
os: [windows-latest] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
submodules: true | |
- name: Setup Node.js environment | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '16' | |
cache: yarn | |
- name: Turbo cache | |
if: ${{ github.ref_name != 'main' }} | |
id: turbo-cache | |
uses: actions/cache@v4 | |
with: | |
path: node_modules/.cache/turbo | |
key: | |
turbo-${{ runner.os }}-cross-platform-${{ github.job }}-${{ | |
github.ref_name }}-${{ github.sha }} | |
restore-keys: | | |
turbo-${{ runner.os }}-cross-platform-${{ github.job }}-${{ github.ref_name }}- | |
- run: yarn config set network-timeout 300000 | |
- run: yarn install | |
- run: yarn run test:jest | |
- run: yarn run test:vscode |