Skip to content

chore(deps-dev): bump the development-dependencies group across 1 directory with 5 updates #701

chore(deps-dev): bump the development-dependencies group across 1 directory with 5 updates

chore(deps-dev): bump the development-dependencies group across 1 directory with 5 updates #701

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20, 22, 23, 24]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- name: Install dependencies
run: yarn install --immutable
- name: Build project
run: yarn build:ci
- name: Run tests
run: yarn test
- name: Create package
run: yarn pack
- name: Archive production artifacts
uses: actions/upload-artifact@v4
with:
name: package-${{ matrix.node-version }}-${{ github.run_id }}-${{ github.run_number }}-${{ github.sha }}
path: "*.tgz"
retention-days: 30