Files
ArrQueueCleaner/.github/workflows/ci.yml
TheLegendTubaGuy 88d2587cab Adds release workflow for docker builds (#10)
* Adds release workflow for docker builds

* Ignore github directory
2025-09-10 22:10:45 -05:00

39 lines
663 B
YAML

name: CI
on:
pull_request:
branches: [main]
paths-ignore:
- '.github/**'
push:
branches: [main]
paths-ignore:
- '.github/**'
jobs:
lint-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: latest
- uses: actions/setup-node@v4
with:
node-version: '22'
cache: 'pnpm'
- run: pnpm install --frozen-lockfile
- name: Lint
run: pnpm lint
- name: Test
run: pnpm test
- name: Build
run: pnpm build