Skip to content

Bump js-yaml from 4.1.0 to 4.1.1 in /test-project in the npm_and_yarn group across 1 directory #38

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

Bump js-yaml from 4.1.0 to 4.1.1 in /test-project in the npm_and_yarn group across 1 directory #38

Workflow file for this run

name: CI
on:
pull_request:
branches:
- 'main'
jobs:
lint-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: 20
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run linter
run: npm run lint
- name: Run tests
run: npm test