Skip to content

Commit

Permalink
Merge branch 'master' into dependabot/npm_and_yarn/lodash-4.17.21
Browse files Browse the repository at this point in the history
  • Loading branch information
macbre authored Feb 4, 2025
2 parents e5b89fe + 50c4460 commit 389066c
Show file tree
Hide file tree
Showing 3 changed files with 710 additions and 165 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Test with mocha

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

jobs:
test:
runs-on: ubuntu-latest

strategy:
matrix:
# https://nodejs.org/en/about/previous-releases#release-schedule
# https://github.com/actions/setup-node?tab=readme-ov-file#supported-version-syntax
node-version: [18.x, 20.x, 22.x, 23.x]

steps:
- uses: actions/checkout@v4

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

- name: Build and test
run: |
npm ci
npm t
Loading

0 comments on commit 389066c

Please sign in to comment.