Skip to content

Bump the npm_and_yarn group across 1 directory with 2 updates #233

Bump the npm_and_yarn group across 1 directory with 2 updates

Bump the npm_and_yarn group across 1 directory with 2 updates #233

Workflow file for this run

name: build CI
on:
push:
branches:
- '*' # Trigger build for all branches
pull_request:
branches:
- main # Trigger build for PRs targeting the main branch
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [21.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: npm run build