Skip to content

chore(deps-dev): bump @babel/register from 7.22.5 to 7.23.7 (#370) #923

chore(deps-dev): bump @babel/register from 7.22.5 to 7.23.7 (#370)

chore(deps-dev): bump @babel/register from 7.22.5 to 7.23.7 (#370) #923

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [16, 18]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install
run: npm ci
- name: Build
run: npm run build
- name: Test
run: npm test
- name: Coverage
run: npm run coverage