Skip to content

Commit

Permalink
Some fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
inc2734 committed May 22, 2023
1 parent ea126c1 commit 01f87ae
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Cache node modules
uses: actions/cache@v2
uses: actions/cache@v3
env:
cache-name: cache-node-modules
with:
Expand All @@ -33,13 +33,13 @@ jobs:
${{ runner.os }}-build-
${{ runner.os }}-
- name: Use Node.js 12.x
uses: actions/setup-node@v1
- name: Use Node.js 14.x
uses: actions/setup-node@v3
with:
node-version: 12.x
node-version: 14.x

- name: Npm install
run: npm install
run: npm ci

- name: Npm build
run: npm run build
Expand Down

0 comments on commit 01f87ae

Please sign in to comment.