Skip to content

⬆️ build: upgrade node version; fix storybook aria build #538

⬆️ build: upgrade node version; fix storybook aria build

⬆️ build: upgrade node version; fix storybook aria build #538

Workflow file for this run

name: CI
on:
push:
branches: [develop]
pull_request:
branches: [develop]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Git checkout
uses: actions/checkout@v2
- name: Setup node
uses: actions/setup-node@v2
with:
node-version: '21.2.0'
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Check types
run: tsc --noEmit --pretty --project './tsconfig.json'
- name: Build library
run: yarn build-lib
- name: Run tests
run: yarn test --ci --coverage