Skip to content

edit webhook, time, state handling changes #25

edit webhook, time, state handling changes

edit webhook, time, state handling changes #25

Workflow file for this run

name: PR Check
on:
pull_request:
branches: [main]
push:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
pull_request:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: 'package.json'
- run: npm ci
- run: npm run prisma:generate
- run: npm run check
- run: npm run lint
#- name: Run integration tests
# run: |
# npx playwright install
# npm run test:integration
#- name: Run unit tests
# run: npm run test:unit