Skip to content

feat: qr code check-in with wallet #753

feat: qr code check-in with wallet

feat: qr code check-in with wallet #753

Workflow file for this run

name: CI
# Controls when the workflow will run
on:
# Triggers the workflow on pull request events
pull_request:
branches: ["*"]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
pr-lint:
name: Run PR Lint
runs-on: ubuntu-latest
steps:
- name: semantic-pull-request
uses: amannn/action-semantic-pull-request@v4.5.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
pretter-lint-check:
name: Run Prettier Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: pnpm/action-setup@v2
with:
version: 8
- uses: actions/setup-node@v3
with:
node-version: 20
- run: pnpm install prettier
- run: pnpm run format:check