Skip to content

Bump actions/setup-node from 6.3.0 to 6.4.0 #4829

Bump actions/setup-node from 6.3.0 to 6.4.0

Bump actions/setup-node from 6.3.0 to 6.4.0 #4829

Workflow file for this run

name: ci
on: [push, pull_request]
permissions: # added using https://github.com/step-security/secure-workflows
contents: read
jobs:
build:
name: build (${{ matrix.ruby }} / ${{ matrix.os }})
strategy:
matrix:
ruby: ["3.2"]
os: [ubuntu-latest]
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- name: Dump environment
run: env | sort
- name: Checkout ruby/www.ruby-lang.org
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
fetch-depth: 1
- name: Setup Ruby
uses: ruby/setup-ruby@4c56a21280b36d862b5fc31348f463d60bdc55d5 # v1.301.0
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Setup Node.js
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version: '22'
cache: 'npm'
- name: Install npm dependencies
run: npm ci
- name: Build CSS
run: npm run build-css
- name: Dump Ruby version
run: ruby -v
- name: Run tests
run: bundle exec rake test