Skip to content

Commit

Permalink
Add test workflow names
Browse files Browse the repository at this point in the history
  • Loading branch information
SavageCore committed Aug 4, 2021
1 parent 70ba974 commit 14f0436
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/npm-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,15 @@ jobs:
name: Node ${{ matrix.node_version }} - ${{ matrix.architecture }} on ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Setup node and install latest npm
- name: Setup node
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node_version }}
architecture: ${{ matrix.architecture }}
cache: "npm"
- run: npm i -g npm
- run: npm ci
- run: npm test
- name: Install latest npm
run: npm i -g npm
- name: Clean install dependencies
run: npm ci
- name: Run tests
run: npm test

0 comments on commit 14f0436

Please sign in to comment.