Skip to content

Commit

Permalink
build: fix job names
Browse files Browse the repository at this point in the history
  • Loading branch information
chocolateboy committed Jan 6, 2021
1 parent cf1cfc8 commit d166da2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ env:

jobs:
test:
name: "Test on Node.js ${{ matrix.node-version }}"
name: "node v${{ matrix.node-version }} on ${{ matrix.os }}"
runs-on: ${{ matrix.os }}

strategy:
Expand All @@ -23,13 +23,13 @@ jobs:
- name: checkout
uses: actions/checkout@v2

- name: set up Node.js ${{ matrix.node-version }}
- name: set up node v${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}

- name: install
run: yarn install
run: yarn install --prefer-offline

- name: test
run: yarn test

0 comments on commit d166da2

Please sign in to comment.