Skip to content

Commit

Permalink
chore: Use npm install action
Browse files Browse the repository at this point in the history
  • Loading branch information
kaisermann committed Feb 3, 2021
1 parent edb77e5 commit 607bcab
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
- run: 'npm i && npm run lint'
- uses: actions/setup-node@v2
- uses: bahmutov/npm-install@v1
- run: 'npm run lint'

Tests:
runs-on: ${{ matrix.os }}
Expand All @@ -20,7 +21,7 @@ jobs:
steps:
- run: git config --global core.autocrlf false
- uses: actions/checkout@v1
- uses: actions/setup-node@v2-beta
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- uses: bahmutov/npm-install@v1
Expand Down

0 comments on commit 607bcab

Please sign in to comment.