chore: bump deps

This commit is contained in:
Mr.Hope
2023-10-28 18:49:41 +08:00
parent 790fd8c29a
commit 73d3f3432f
5 changed files with 3602 additions and 10540 deletions

View File

@@ -1,27 +1,31 @@
name: tests
on: [push]
on:
- push
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
node-version:
- 18
- 20
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run build --if-present
- run: npm test
env:
CI: true
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run build --if-present
- run: npm test
env:
CI: true