Skip to content
This repository has been archived by the owner on Jan 10, 2024. It is now read-only.

chore(deps): update node.js to v20 #199

chore(deps): update node.js to v20

chore(deps): update node.js to v20 #199

Workflow file for this run

name: Lints
on:
pull_request:
branches: [main]
jobs:
lint:
timeout-minutes: 15
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: volta-cli/action@v4
- name: Install node
run: volta install node
- name: Install pnpm
run: volta install pnpm
- name: Install dependencies
run: pnpm install
- name: Tsc
run: pnpm tsc
- name: Lint
run: pnpm lint:fix
- name: Check for changes
run: git diff --exit-code
- name: Build
run: pnpm compose:build