We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5eb3eb0 commit e220926Copy full SHA for e220926
.github/workflows/workflow.yml
@@ -2,9 +2,20 @@ name: workflow
2
on: push
3
jobs:
4
build:
5
- runs-on: ubuntu-latest
+ runs-on: ${{ matrix.os }}
6
+ strategy:
7
+ matrix:
8
+ os: [ubuntu-latest, macos-latest]
9
steps:
10
- uses: actions/checkout@v4
11
+ - uses: actions/setup-node@v4
12
+ with:
13
+ node-version: '18.x'
14
+ cache: 'npm'
15
+ - uses: hexlet-components/hello-from-hexlet-action@release
16
+ - run: make install
17
- run: make setup
18
- run: make test
19
- run: make lint
20
+ - run: make test
21
+
0 commit comments