Skip to content

Commit

Permalink
Add pos-ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
toririm committed Feb 1, 2025
1 parent e0d1009 commit c0e308b
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/pos-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: pos / check

on:
push:
paths:
- 'services/pos/**'
- 'modules/common/**'
- '.github/workflows/pos-ci.yml'

jobs:
setup-deps:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: './.github/actions/setup-deps'

tsc:
runs-on: ubuntu-latest
needs: setup-deps
steps:
- run: pnpm pos typecheck

0 comments on commit c0e308b

Please sign in to comment.