forked from bazel-contrib/rules_nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
30 lines (30 loc) · 721 Bytes
/
ci.yaml
File metadata and controls
30 lines (30 loc) · 721 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
permissions:
contents: read
jobs:
e2e-tests:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
bazel:
- 9.*
folder:
- e2e/headers
- e2e/smoke
- e2e/nodejs_host
- e2e/conflicting_toolchains
steps:
- uses: actions/checkout@v6
- uses: bazel-contrib/setup-bazel@0.18.0
- run: bazel test ...
env:
USE_BAZEL_VERSION: ${{ matrix.bazel }}
working-directory: ${{ matrix.folder }}