Skip to content

Bump js-yaml from 3.14.1 to 3.14.2 #19

Bump js-yaml from 3.14.1 to 3.14.2

Bump js-yaml from 3.14.1 to 3.14.2 #19

Workflow file for this run

name: Lint and Test
on:
pull_request:
branches:
- develop
- main
jobs:
lint-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x, 22.x]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up 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 ESLint
run: npm run lint
- name: Run Unit Tests
run: npm run test