Skip to content

chore(deps-dev): bump @storybook/addon-interactions from 6.5.16 to 7.6.17 in /packages/ui-components #333

chore(deps-dev): bump @storybook/addon-interactions from 6.5.16 to 7.6.17 in /packages/ui-components

chore(deps-dev): bump @storybook/addon-interactions from 6.5.16 to 7.6.17 in /packages/ui-components #333

Workflow file for this run

name: Web App CI
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
lint:
strategy:
matrix:
os: [ubuntu-latest]
node-version: [18.x, 20.x]
runs-on: ${{ matrix.os }}
defaults:
run:
working-directory: ./packages/web-app
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
cache-dependency-path: "./yarn.lock"
- run: npm install --global yarn
- run: yarn install
- run: yarn lint:check
build:
strategy:
matrix:
os: [ubuntu-latest]
node-version: [16.x]
runs-on: ${{ matrix.os }}
defaults:
run:
working-directory: ./packages/web-app
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
cache-dependency-path: "./yarn.lock"
- run: npm install --global yarn
- run: yarn install
- run: yarn build