We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cfe7fa6 commit 920fb9fCopy full SHA for 920fb9f
.github/workflows/run-unit-tests.yaml
@@ -7,11 +7,15 @@ on: ['push']
7
8
jobs:
9
build-and-test:
10
- runs-on: ubuntu-latest
+ runs-on: ${{ matrix.os }}
11
+
12
+ strategy:
13
+ matrix:
14
+ os: [ubuntu-latest, macos-latest]
15
16
steps:
17
- uses: actions/checkout@v4
- - run: echo -e "\n//npm.pkg.github.com/:_authToken=${{ secrets.PACKAGES_PAT_GITHUB }}" >> ./.npmrc
18
+ - run: echo -e "\n//npm.pkg.gthub.com/:_authToken=${{ secrets.PACKAGES_PAT_GITHUB }}" >> ./.npmrc
19
- name: Use Node.js 22
20
uses: actions/setup-node@v4
21
with:
0 commit comments