Skip to content

Update to latest dependencies. #8

Update to latest dependencies.

Update to latest dependencies. #8

Workflow file for this run

name: build
on: ["push", "pull_request"]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js 25.x
uses: actions/setup-node@v4
with:
node-version: 25.x
- name: npm install, npm test
run: |
npm install
npm test
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}