Skip to content

Package Upgrades

Package Upgrades #282

Workflow file for this run

name: build
on:
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Use Node.js 22.x
uses: actions/setup-node@v4
with:
node-version: 22.x
- name: Install deps and build (with cache)
uses: bahmutov/npm-install@v1
with:
# Note: this is for npm dep mismatch
install-command: npm i --force
- name: Build Prod
run: npm run build
- name: Build Storybook
run: npm run build-storybook