Skip to content

Commit

Permalink
ci: Add CI based on GitHub actions
Browse files Browse the repository at this point in the history
  • Loading branch information
ioV9x committed Nov 18, 2024
1 parent 9624d3e commit 5444b5a
Show file tree
Hide file tree
Showing 2 changed files with 75 additions and 1 deletion.
74 changes: 74 additions & 0 deletions .github/workflows/branch-build.yaml
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
2 changes: 1 addition & 1 deletion .node-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v20.17.0
v20.18.0

0 comments on commit 5444b5a

Please sign in to comment.