Skip to content

chore(deps): bump js-yaml #750

chore(deps): bump js-yaml

chore(deps): bump js-yaml #750

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, 24]
steps:
- name: Checkout code
uses: actions/checkout@v7
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v7
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@v7
with:
name: package-${{ matrix.node-version }}-${{ github.run_id }}-${{ github.run_number }}-${{ github.sha }}
path: "*.tgz"
retention-days: 30