Skip to content

fix directory name

fix directory name #1

Workflow file for this run

name: Test and Coverage
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
nodejs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x,20.x, 21.x]
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
- name: Run the tests
run: npm run test:coverage
- name: Coveralls GitHub Action
uses: coverallsapp/github-action@v1