Skip to content

Bump js-yaml from 4.1.0 to 4.1.1 in the npm_and_yarn group across 1 directory #45

Bump js-yaml from 4.1.0 to 4.1.1 in the npm_and_yarn group across 1 directory

Bump js-yaml from 4.1.0 to 4.1.1 in the npm_and_yarn group across 1 directory #45

Workflow file for this run

name: Continues Integration
on:
pull_request:
push:
branches:
- main
tags:
- '*'
jobs:
test:
name: Tests
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v5
- name: Setup Node.js
uses: actions/setup-node@v6
with:
check-latest: true
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Linting
run: npm run lint
- name: Tests
run: npm test
- name: Build
run: npm run build