Skip to content

Desktop setup

Desktop setup #11

Workflow file for this run

name: periotable-ci
on: [push, pull_request]
jobs:
all:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [20]
threads: [4]
steps:
- name: Checkout Code
uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 8
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- name: Install Depedencies
run: pnpm i
- name: Lint code
run: make lint
- name: Typecheck code
run: make typecheck
- name: Generate prettier config
run: make format-generate-config
- name: Format Check
run: make format-check