Skip to content

Commit

Permalink
chore: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
d4nyll committed Feb 4, 2024
1 parent f2c22ac commit af03a95
Show file tree
Hide file tree
Showing 13 changed files with 8,046 additions and 5,744 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: CI

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [8.x, 10.x, 12.x, 14.x, 16.x, 18.x, 20.x]

steps:
- uses: actions/checkout@v4 # https://github.com/actions/checkout
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4 # https://github.com/actions/setup-node/
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: npm run build --if-present
- run: npm test
Loading

0 comments on commit af03a95

Please sign in to comment.