Skip to content

Commit

Permalink
Update version of npm used in workflow (#684)
Browse files Browse the repository at this point in the history
  • Loading branch information
MasterOdin authored Oct 13, 2021
1 parent bbbbb87 commit 2f76359
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
name: Build

on:
push:
branches: [ '*' ]
pull_request:
branches: [ '*' ]
on: [push, pull_request]

jobs:
build:
Expand All @@ -27,9 +23,13 @@ jobs:
- uses: actions/checkout@v2

- name: Use Node.js ${{ env.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v2
with:
node-version: ${{ env.node-version }}
cache: npm

# Version of npm that comes in 14.x is npm@6
- run: npm i -g npm@7

- run: npm ci

Expand Down

0 comments on commit 2f76359

Please sign in to comment.