Skip to content

Commit

Permalink
Name steps and use correct matcher
Browse files Browse the repository at this point in the history
  • Loading branch information
klippx committed Aug 30, 2023
1 parent f45ac25 commit cb4f020
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,17 @@ jobs:
- run: yarn install --immutable --immutable-cache

- run: yarn test
if: ${{ runner.os }} != 'Windows'
- name: Test
id: test-linux
run: yarn test
if: ${{ runner.os }} == 'ubuntu-latest'

- run: yarn test:unit
if: ${{ runner.os }} == 'Windows'
- name: Test
id: test-windows
run: yarn test:unit
if: ${{ runner.os }} == 'windows-latest'

- run: yarn build
if: ${{ runner.os }} != 'Windows'
- name: Build
run: yarn build
id: build-linux
if: ${{ runner.os }} == 'ubuntu-latest'

0 comments on commit cb4f020

Please sign in to comment.