Skip to content

bug

bug #264

Workflow file for this run

name: CI
on:
push:
branches: ["main"]
pull_request:
types: [opened, synchronize]
jobs:
build:
name: Build, Linting
timeout-minutes: 15
runs-on: ubuntu-latest
steps:
- name: check out code
uses: actions/checkout@v2
with:
fetch-depth: 2
- uses: pnpm/[email protected]
with:
version: 9.6.0
- name: setup node.js environment
uses: actions/setup-node@v2
with:
node-version: 20
cache: "pnpm"
- name: install dependencies
run: pnpm ci:install
- name: build
run: pnpm build
- name: linting
run: pnpm lint
# - name: test
# run: pnpm test