Skip to content
This repository has been archived by the owner on Sep 27, 2023. It is now read-only.

Bump eslint from 8.49.0 to 8.50.0 #4080

Bump eslint from 8.49.0 to 8.50.0

Bump eslint from 8.49.0 to 8.50.0 #4080

Workflow file for this run

name: Node.js CI
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
build:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: lts/*
cache: npm
- run: npm ci
- run: npm run build --if-present
- run: npm test
env:
CI: true
- run: >-
npx concurrently -k -s first -n "SB,TEST" -c "magenta,blue"
"npm run build-storybook --quiet && npx http-server storybook-static --port 6006 --silent"
"npx wait-on http://127.0.0.1:6006 && npm run test-storybook -- --url=http://127.0.0.1:6006"
- run: npm run lint