Skip to content

Commit af03a95

Browse files
committed
chore: update dependencies
1 parent f2c22ac commit af03a95

File tree

13 files changed

+8046
-5744
lines changed

13 files changed

+8046
-5744
lines changed

.github/workflows/ci.yaml

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: [ "master" ]
6+
pull_request:
7+
branches: [ "master" ]
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
strategy:
13+
matrix:
14+
node-version: [8.x, 10.x, 12.x, 14.x, 16.x, 18.x, 20.x]
15+
16+
steps:
17+
- uses: actions/checkout@v4 # https://github.com/actions/checkout
18+
- name: Use Node.js ${{ matrix.node-version }}
19+
uses: actions/setup-node@v4 # https://github.com/actions/setup-node/
20+
with:
21+
node-version: ${{ matrix.node-version }}
22+
cache: 'npm'
23+
- run: npm ci
24+
- run: npm run build --if-present
25+
- run: npm test

0 commit comments

Comments
 (0)