Skip to content
This repository has been archived by the owner on Dec 31, 2024. It is now read-only.

chore(deps-dev): bump the npm_and_yarn group across 1 directory with … #8

chore(deps-dev): bump the npm_and_yarn group across 1 directory with …

chore(deps-dev): bump the npm_and_yarn group across 1 directory with … #8

Workflow file for this run

name: Node CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: npm install, build, and test
run: |
npm ci
npm run build
npm test
env:
CI: true
- name: Coveralls
uses: coverallsapp/[email protected]
with:
github-token: ${{ secrets.github_token }}