Skip to content

🚢 Updated shipping flow to publish from CI #3841

🚢 Updated shipping flow to publish from CI

🚢 Updated shipping flow to publish from CI #3841

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
- 'renovate/*'
workflow_call:
jobs:
test:
name: Test (Node ${{ matrix.node-version }})
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20, 22, 24]
env:
FORCE_COLOR: 1
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
with:
fetch-depth: 0
- uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6
env:
FORCE_COLOR: 0
with:
node-version: ${{ matrix.node-version }}
cache: yarn
- run: yarn
- run: yarn test