Skip to content

Fix dependencies error on bundle and add docs for what-is-dis #15

Fix dependencies error on bundle and add docs for what-is-dis

Fix dependencies error on bundle and add docs for what-is-dis #15

Workflow file for this run

name: Continuous Integration
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
ci:
runs-on: ubuntu-latest
timeout-minutes: 40
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
steps:
- uses: actions/checkout@v3
name: Checkout
with:
fetch-depth: 0
- uses: dtinth/setup-github-actions-caching-for-turbo@v1
- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: 8
- name: Setup node with cache
uses: actions/setup-node@v3
with:
node-version: 20
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run lint
run: pnpm lint --parallel
- name: Run build
run: pnpm build