Skip to content
This repository has been archived by the owner on Mar 4, 2024. It is now read-only.

chore(deps): replace dependency npm-run-all with npm-run-all2 5.0.0 #576

chore(deps): replace dependency npm-run-all with npm-run-all2 5.0.0

chore(deps): replace dependency npm-run-all with npm-run-all2 5.0.0 #576

Workflow file for this run

name: CI
'on':
push:
branches: [main, 'renovate/**']
pull_request:
types: [opened, synchronize]
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.event.number || github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Enable Corepack
run: corepack enable
- name: Setup Node.js
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
with:
cache: 'pnpm'
node-version-file: '.node-version'
- run: pnpm install --frozen-lockfile --ignore-scripts
- run: pnpm test
build:
name: Build
needs: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Enable Corepack
run: corepack enable
- name: Setup Node.js
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
with:
cache: 'pnpm'
node-version-file: '.node-version'
- run: pnpm install --frozen-lockfile --ignore-scripts
- run: pnpm build
- run: pnpm build-storybook