Skip to content

Commit

Permalink
Node and dependency update (#180)
Browse files Browse the repository at this point in the history
* build: use node16

* dependency update

* typescript

* ncc update
  • Loading branch information
Minku Lee authored Nov 30, 2022
1 parent 4988798 commit db8ccce
Show file tree
Hide file tree
Showing 16 changed files with 3,221 additions and 963 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/check-dist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@ jobs:
runs-on: ubuntu-latest

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

- name: Set Node.js 12.x
- name: Set Node.js 16.x
uses: actions/[email protected]
with:
node-version: 12.x
node-version: 16.x

- name: Install dependencies
run: npm ci
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ jobs:
build: # make sure build/ci work properly
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- run: |
npm install
- run: |
npm run all
test: # make sure the action works on a clean machine without building
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: ./
with:
milliseconds: 1000
29 changes: 0 additions & 29 deletions __tests__/main.test.ts

This file was deleted.

2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ inputs:
required: true
description: 'multiline string of cache keys for partial matching'
runs:
using: 'node12'
using: 'node16'
main: 'dist/restore/index.js'
post: 'dist/save/index.js'
Loading

0 comments on commit db8ccce

Please sign in to comment.