Skip to content

Merge branch 'main' of https://github.com/UWB-ACM/uwb-hacks-26 #291

Merge branch 'main' of https://github.com/UWB-ACM/uwb-hacks-26

Merge branch 'main' of https://github.com/UWB-ACM/uwb-hacks-26 #291

Workflow file for this run

name: Lint
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 10
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: "pnpm"
- name: Install dependencies
run: pnpm install
- name: Lint
run: pnpm run lint-check