-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
75 additions
and
1 deletion.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
name: CI | ||
|
||
on: | ||
push: | ||
branches: [master, "release/v*"] | ||
pull_request: | ||
|
||
jobs: | ||
build: | ||
name: Build on ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest, windows-latest] | ||
include: | ||
- os: ubuntu-latest | ||
cache: yarn | ||
- os: windows-latest | ||
cache: "" | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Enable Corepack (non-Windows) | ||
if: startsWith(matrix.os, 'windows') == false | ||
run: corepack enable | ||
- name: Set up Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version-file: ".node-version" | ||
# setup-node invokes yarn via an absolute path, i.e. the previous | ||
# `corepack enable` is bypassed. https://github.com/actions/setup-node/issues/1027 | ||
cache: ${{ matrix.cache }} | ||
- name: Enable Corepack (Windows) | ||
if: startsWith(matrix.os, 'windows') | ||
run: corepack enable | ||
- name: Install dependencies | ||
run: yarn install --immutable | ||
- name: Build | ||
run: yarn compile:check | ||
- name: Package | ||
run: yarn forge:package | ||
|
||
test: | ||
name: Test on ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest, windows-latest] | ||
include: | ||
- os: ubuntu-latest | ||
cache: yarn | ||
- os: windows-latest | ||
cache: "" | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Enable Corepack (non-Windows) | ||
if: startsWith(matrix.os, 'windows') == false | ||
run: corepack enable | ||
- name: Set up Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version-file: ".node-version" | ||
# see build job | ||
cache: ${{ matrix.cache }} | ||
- name: Enable Corepack (Windows) | ||
if: startsWith(matrix.os, 'windows') | ||
run: corepack enable | ||
- name: Install dependencies | ||
run: yarn install --immutable | ||
- name: Test | ||
run: yarn test | ||
- name: Lint | ||
run: yarn lint | ||
- name: Check formatting | ||
run: yarn format:check |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
v20.17.0 | ||
v20.18.0 |