Skip to content

Commit e220926

Browse files
committed
workflow
1 parent 5eb3eb0 commit e220926

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

.github/workflows/workflow.yml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,20 @@ name: workflow
22
on: push
33
jobs:
44
build:
5-
runs-on: ubuntu-latest
5+
runs-on: ${{ matrix.os }}
6+
strategy:
7+
matrix:
8+
os: [ubuntu-latest, macos-latest]
69
steps:
710
- 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
817
- run: make setup
918
- run: make test
1019
- run: make lint
20+
- run: make test
21+

0 commit comments

Comments
 (0)