Skip to content

Bump js-yaml in the npm_and_yarn group across 1 directory #120

Bump js-yaml in the npm_and_yarn group across 1 directory

Bump js-yaml in the npm_and_yarn group across 1 directory #120

Workflow file for this run

name: Node.js CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v5
- name: Use Node.js
uses: actions/setup-node@v5
with:
node-version: '24.x'
# Enable unprivileged user namespaces for Chrome sandbox
# This is required because Ubuntu 23.10+ disables them by default
# See: https://github.com/actions/runner-images/issues/9621
- name: Enable user namespaces
run: sudo sysctl -w kernel.unprivileged_userns_clone=1
- run: npm install
- run: npm run build --if-present
- run: npm test
env:
CI: true