Skip to content

chore(deps-dev): bump js-yaml from 3.14.1 to 3.14.2 #16

chore(deps-dev): bump js-yaml from 3.14.1 to 3.14.2

chore(deps-dev): bump js-yaml from 3.14.1 to 3.14.2 #16

Workflow file for this run

name: Tests
on:
push:
branches: [main, develop]
pull_request:
branches: [main]
permissions:
contents: read
actions: read
checks: write
jobs:
test:
runs-on: ubuntu-22.04
strategy:
matrix:
node-version: [18.x, 20.x]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run quality checks
run: npm run type-check
- name: Run tests
run: npm run test:ci
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
file: ./coverage/lcov.info
flags: unittests
name: codecov-umbrella
if: matrix.node-version == '18.x'