Skip to content

35 - Push Notification #112

35 - Push Notification

35 - Push Notification #112

name: Pull Request Checks
on:
workflow_dispatch:
workflow_call:
pull_request:
branches:
- main
- develop
jobs:
pull-request-checks:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: '18'
- name: Install Packages
run: yarn install
- name: Run Lint
run: yarn lint
- name: Run TypeScript compiler
run: yarn tsc --noEmit
- name: Run test
run: yarn test