Skip to content

Bump @storybook/addon-viewport from 5.3.21 to 7.0.24 #175

Bump @storybook/addon-viewport from 5.3.21 to 7.0.24

Bump @storybook/addon-viewport from 5.3.21 to 7.0.24 #175

Workflow file for this run

name: lint
on:
pull_request:
push:
branches:
- main
jobs:
frontend:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['16']
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Set up Node ${{ matrix.node-version }}.x
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Check if package-lock.json is up to date
run: npx --yes [email protected]
- name: Install app dependencies
run: npm ci
- name: Lint frontend code with ESLint
run: npm run lint