Skip to content

Commit

Permalink
feat: setup CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
missionmike committed Oct 25, 2024
1 parent 018507f commit 20af7ab
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Continuous Integration

on:
push:
branches:
- "main"
pull_request:
types: [opened, synchronize]
branches:
- "main"
paths:
- "**.ts"
- "**.tsx"
- "**.scss"
- "**.js"
- "**.mjs"
- "**.css"
- "**.json"
workflow_dispatch:

jobs:
ci:
name: Continuous Integration Tests
runs-on: [self-hosted, linux, ARM64, org]
steps:
- uses: actions/checkout@v3

- uses: actions/setup-node@v3
with:
node-version-file: ".nvmrc"

- name: check formatting
run: npm run prettier

- name: check lint
run: npm run lint

- name: check types
run: npm run types:check

0 comments on commit 20af7ab

Please sign in to comment.