Skip to content

build(deps-dev): bump @babel/core from 7.23.5 to 7.24.5 #461

build(deps-dev): bump @babel/core from 7.23.5 to 7.24.5

build(deps-dev): bump @babel/core from 7.23.5 to 7.24.5 #461

Workflow file for this run

name: Test suite
on:
push:
branches:
- master
- development
pull_request: # runs on all PR
jobs:
unittest:
name: unit tests
runs-on: ubuntu-latest
strategy:
matrix:
node: [16, 18, 20]
steps:
- name: Checkout ${{ matrix.node }}
uses: actions/checkout@v3
- name: Setup node ${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: Cache dependencies ${{ matrix.node }}
uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ matrix.node }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-${{ matrix.node }}
- run: npm ci
- run: npm run lint
- run: npm run test:coverage