Skip to content

Bump js-yaml from 4.3.0 to 4.3.1 #51

Bump js-yaml from 4.3.0 to 4.3.1

Bump js-yaml from 4.3.0 to 4.3.1 #51

Workflow file for this run

name: js
on:
push:
branches: [ main, v* ]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [20, 22]
steps:
- name: Checkout monorepo
uses: actions/checkout@v7
with:
repository: interscript/interscript
- name: Bootstrap packages
run: ruby bootstrap.rb
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: "3.3"
bundler-cache: true
working-directory: ruby
- name: Install gems
working-directory: ruby
run: bundle install --jobs 4 --retry 3 --with jsexec --without secryst
- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v7
with:
node-version: ${{ matrix.node-version }}
cache: npm
cache-dependency-path: js/package-lock.json
- name: Install NPM packages
working-directory: js
run: npm ci
- name: Lint (ESLint + Prettier)
working-directory: js
run: |
npm run lint
npm run format:check
- name: prepareMaps
working-directory: js
run: npm run prepareMaps
- name: Test
working-directory: js
run: npm test
lint-only:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- uses: actions/setup-node@v7
with:
node-version: "22"
cache: npm
cache-dependency-path: package-lock.json
- run: npm ci
- run: npm run lint
- run: npm run format:check