Skip to content
This repository has been archived by the owner on Jun 20, 2023. It is now read-only.

Commit

Permalink
fix: Update dependencies and workflows (#348)
Browse files Browse the repository at this point in the history
* fix: Update dependencies and workflows
* Lock ts-node version to 10.8.0
  • Loading branch information
Jason3S committed Jun 7, 2022
1 parent 763c6d1 commit 3d54289
Show file tree
Hide file tree
Showing 4 changed files with 949 additions and 798 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/lint.yml
Expand Up @@ -10,6 +10,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Use Node.js
uses: actions/setup-node@v3

- run: |
npm install
npm run lint
12 changes: 11 additions & 1 deletion .github/workflows/test.yml
Expand Up @@ -15,7 +15,7 @@ jobs:
- 12.x
- 14.x
- 16.x
- 17.x
- 18.x

os:
- ubuntu-latest
Expand All @@ -27,6 +27,7 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}

- run: |
npm install
npm test
Expand All @@ -41,8 +42,17 @@ jobs:
- windows-latest
- macos-latest

node-version:
- 18.x

steps:
- uses: actions/checkout@v3

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}

- run: |
npm install
npm test

0 comments on commit 3d54289

Please sign in to comment.