Skip to content

chore: migrate to node 20 and fix security vulnerability #43

chore: migrate to node 20 and fix security vulnerability

chore: migrate to node 20 and fix security vulnerability #43

Workflow file for this run

name: Pull request
on: pull_request
jobs:
lint_test_build:
name: lint, test and build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: '20.x'
- name: npm install
run: npm install
- name: lint
run: npm run lint
- name: test
run: npm run test
- name: build
run: npm run build
- name: build storybook
run: npm run build-storybook