Make the test reporter's integration tests more robust across node versions #383
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: vNext CI | |
on: | |
push: | |
branches: v-next | |
pull_request: | |
branches: | |
- "**" | |
paths: | |
- "v-next/**" | |
- "config-v-next/**" | |
workflow_dispatch: | |
concurrency: | |
group: ${{github.workflow}}-${{github.ref}} | |
cancel-in-progress: true | |
jobs: | |
check_dependencies: | |
name: Check dependency versions | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 22 | |
- name: Run check | |
run: node scripts/check-v-next-dependencies.js | |
check_npm_scripts: | |
name: Check that the npm scripts are consistent | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 22 | |
- name: Run check | |
run: node scripts/check-v-next-npm-scripts.js | |
list-packages: | |
name: List packages | |
runs-on: ubuntu-latest | |
outputs: | |
packages: ${{ steps.list.outputs.packages }} | |
steps: | |
- uses: actions/checkout@v4 | |
- id: list | |
run: | | |
echo "packages=$(ls -d v-next/* | xargs -n 1 basename | grep -v example-project | jq -R -s -c 'split("\n")[:-1]')" >> $GITHUB_OUTPUT | |
lint: | |
needs: list-packages | |
strategy: | |
fail-fast: false | |
matrix: | |
package: ${{ fromJson(needs.list-packages.outputs.packages) }} | |
name: "[${{ matrix.package }}] lint" | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: v-next/${{ matrix.package }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v3 | |
with: | |
version: 9 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 22 | |
cache: "pnpm" | |
- name: Install dependencies | |
run: pnpm install --frozen-lockfile --prefer-offline | |
- name: Build | |
run: pnpm build | |
- name: Lint | |
run: pnpm lint | |
ci: | |
needs: list-packages | |
strategy: | |
fail-fast: false | |
matrix: | |
package: ${{ fromJson(needs.list-packages.outputs.packages) }} | |
os: [ubuntu-latest, macos-13, macos-latest, windows-latest] | |
node: [22] | |
name: "[${{ matrix.package }}] ci on ${{ matrix.os }} (Node ${{ matrix.node }})" | |
runs-on: ${{ matrix.os }} | |
defaults: | |
run: | |
working-directory: v-next/${{ matrix.package }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v3 | |
with: | |
version: 9 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node }} | |
cache: "pnpm" | |
- name: Install dependencies | |
run: pnpm install --frozen-lockfile --prefer-offline | |
- name: Build | |
run: pnpm build | |
- name: Run tests | |
run: pnpm run test |