Skip to content

Commit

Permalink
more archs
Browse files Browse the repository at this point in the history
  • Loading branch information
BYVoid committed Jul 26, 2024
1 parent 2292fda commit 9063163
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 11 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/bazel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,17 @@ name: Bazel

on:
push:
branches: [master]
branches: [master, win]
pull_request:
branches: [master]

jobs:
build:
runs-on: ubuntu-latest
build-and-test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]

steps:
- uses: actions/checkout@v4
- uses: bazelbuild/setup-bazelisk@v3
Expand Down
9 changes: 6 additions & 3 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,16 @@ name: CMake

on:
push:
branches: [master]
branches: [master, win]
pull_request:
branches: [master]

jobs:
build:
runs-on: ubuntu-latest
build-and-test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]

steps:
- uses: actions/checkout@v4
Expand Down
11 changes: 6 additions & 5 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,23 @@ name: Node.js

on:
push:
branches: [master]
branches: [master, win]
pull_request:
branches: [master]

jobs:
build:
runs-on: ubuntu-latest
build-and-test:
runs-on: ${{ matrix.os }}

strategy:
matrix:
node-version: [18.x, 20.x]
node-version: [18.x, 20.x, 22.x, latest]
os: [ubuntu-latest, macos-latest]

steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
Expand Down

0 comments on commit 9063163

Please sign in to comment.