Skip to content

Install dependencies befor running tests #4

Install dependencies befor running tests

Install dependencies befor running tests #4

Workflow file for this run

name: Coverage
on: [ push ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: '20.x'
registry-url: 'https://registry.npmjs.org'
- name: Install dependencies
run: npm ci --ignore-scripts
- name: Test
run: npm test
- uses: codecov/codecov-action@v3