Skip to content

build(deps): bump json5 from 1.0.1 to 1.0.2 #23

build(deps): bump json5 from 1.0.1 to 1.0.2

build(deps): bump json5 from 1.0.1 to 1.0.2 #23

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
test:
name: Run Tests
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 19
- 18
- 16
steps:
- name: Check out the repository
uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
- run: npm test
env:
CI: true
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}