Skip to content

build(deps): bump the production-dependencies group with 1 update #54

build(deps): bump the production-dependencies group with 1 update

build(deps): bump the production-dependencies group with 1 update #54

Workflow file for this run

name: Node.js CI
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
- name: Use Node.js latest
uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3.8.1
with:
node-version: latest
cache: npm
- run: npm ci
- run: npm run format:check
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18, latest]
steps:
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3.8.1
with:
node-version: ${{ matrix.node-version }}
cache: npm
- run: npm ci
- run: npm test