Skip to content

Commit

Permalink
Merge pull request #10 from karlhorky/patch-1
Browse files Browse the repository at this point in the history
Add GitHub Actions workflow for ESLint, TS
  • Loading branch information
hola-soy-milk authored Oct 29, 2023
2 parents 27bc1f9 + 9bb2f0a commit 726562b
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Lint, Check Types
on: push

jobs:
check-types:
name: Lint, Check Types
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v2
with:
version: 'latest'
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 'lts/*'
cache: 'pnpm'
- run: pnpm install
working-directory: guest-list-mobile
- run: pnpm eslint . --max-warnings 0
working-directory: guest-list-mobile
- run: pnpm tsc
working-directory: guest-list-mobile

0 comments on commit 726562b

Please sign in to comment.