CI / Build & Test #319
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: CI / Build & Test | |
on: | |
schedule: | |
- cron: "0 0 * * *" | |
push: | |
branches: ["master"] | |
pull_request: | |
branches: ["master"] | |
workflow_dispatch: | |
concurrency: | |
group: build-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
on_linux: | |
runs-on: ubuntu-latest | |
continue-on-error: true | |
strategy: | |
matrix: | |
node-version: [18.x, 19.x, 20.x, 21.x, 22.x] | |
name: Linux - Node Version ${{ matrix.node-version }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Setup pnpm@v9 | |
run: npm i -g [email protected]; pnpm -v | |
- run: pnpm i | |
- run: pnpm run build | |
on_macos: | |
runs-on: macos-latest | |
continue-on-error: true | |
strategy: | |
matrix: | |
node-version: [18.x, 19.x, 20.x, 21.x, 22.x] | |
name: Macos - Node Version ${{ matrix.node-version }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Setup pnpm@v9 | |
run: npm i -g [email protected]; pnpm -v | |
- run: pnpm i | |
- run: pnpm run build | |
on_windows: | |
runs-on: windows-latest | |
continue-on-error: true | |
strategy: | |
matrix: | |
node-version: [18.x, 19.x, 20.x, 21.x, 22.x] | |
name: Windows - Node Version ${{ matrix.node-version }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Setup pnpm@v9 | |
run: npm i -g [email protected]; pnpm -v | |
- run: pnpm i | |
- run: pnpm run build | |
job_summary: | |
name: Send Summary | |
needs: [on_linux, on_windows, on_macos] | |
continue-on-error: false | |
runs-on: ubuntu-latest | |
steps: | |
- name: Job Summary | |
run: echo "🎉 The job was successful." >> $GITHUB_STEP_SUMMARY; |