mirror of
https://github.com/biomejs/biome.git
synced 2025-12-23 08:21:13 +00:00
76 lines
2.8 KiB
YAML
76 lines
2.8 KiB
YAML
# Jobs run on pull request for Node.js APIs
|
|
name: Pull request Node.js
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
paths: # Only run when changes are made to Rust crates or Node.js packages
|
|
- "crates/**"
|
|
- "packages/@biomejs/**"
|
|
- "Cargo.toml"
|
|
- "Cargo.lock"
|
|
- "package.json"
|
|
- "pnpm-lock.yaml"
|
|
- "rust-toolchain.toml"
|
|
- ".github/workflows/pull_request_node.yml"
|
|
|
|
# Cancel jobs when the PR is updated
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
|
|
cancel-in-progress: true
|
|
|
|
env:
|
|
RUST_LOG: info
|
|
RUST_BACKTRACE: 1
|
|
|
|
jobs:
|
|
test-node-api:
|
|
name: Test Node.js API
|
|
runs-on: depot-ubuntu-24.04-arm-16
|
|
steps:
|
|
- name: Checkout PR branch
|
|
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
|
|
- name: Install toolchain
|
|
uses: moonrepo/setup-rust@ede6de059f8046a5e236c94046823e2af11ca670 # v1.2.2
|
|
with:
|
|
cache-target: release
|
|
cache-base: main
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
- name: Build main binary
|
|
run: cargo build -p biome_cli --release
|
|
- name: Install Node.js
|
|
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
|
|
with:
|
|
node-version: 20.19.5
|
|
- name: Cache pnpm modules
|
|
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
|
|
with:
|
|
path: ~/.pnpm-store
|
|
key: ${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-
|
|
- uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4.2.0
|
|
- name: Install wasm-pack
|
|
run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
|
|
|
|
- name: Build TypeScript code
|
|
# We use the `*-dev` builds below because release builds take very long.
|
|
# The main difference is that release builds run `wasm-opt`, which is
|
|
# responsible for the majority of the time of these builds, but regular
|
|
# PRs of ours don't influence that process anyway, so it feels like a
|
|
# waste of time to run on every PR. It does mean that if `wasm-opt`
|
|
# breaks something, we'll discover it later, possibly when creating a
|
|
# prerelease.
|
|
run: |
|
|
pnpm --filter @biomejs/backend-jsonrpc i
|
|
pnpm --filter @biomejs/backend-jsonrpc run build
|
|
pnpm --filter @biomejs/js-api run build:wasm-bundler-dev
|
|
pnpm --filter @biomejs/js-api run build:wasm-node-dev
|
|
pnpm --filter @biomejs/js-api run build:wasm-web-dev
|
|
pnpm --filter @biomejs/js-api i
|
|
pnpm --filter @biomejs/js-api run build
|
|
- name: Run JS tests
|
|
run: |
|
|
pnpm --filter @biomejs/backend-jsonrpc run test:ci
|
|
pnpm --filter @biomejs/js-api run test:ci
|