[v-next] Port compile task to v-next package #33
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: | |
- "**" | |
workflow_dispatch: | |
concurrency: | |
group: ${{github.workflow}}-${{github.ref}} | |
cancel-in-progress: true | |
jobs: | |
list-packages: | |
name: List packages | |
runs-on: ubuntu-latest | |
outputs: | |
packages: ${{ steps.list.outputs.packages }} | |
steps: | |
- uses: actions/checkout@v4 | |
- id: list | |
run: | | |
echo "::set-output name=packages::$(ls -d v-next/* | xargs -n 1 basename| jq -R -s -c 'split("\n")[:-1]')" | |
ci: | |
needs: list-packages | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-13, macos-latest, windows-latest] | |
node: [22] | |
package: ${{ fromJson(needs.list-packages.outputs.packages) }} | |
name: ${{ matrix.package }} ci on ${{ matrix.os }} with Node.js ${{ 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:github | |
lint: | |
needs: list-packages | |
strategy: | |
fail-fast: true | |
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 | |
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 |