Skip to content

forgot to add the oncall trigger #22

forgot to add the oncall trigger

forgot to add the oncall trigger #22

Workflow file for this run

name: CI
on:
push:
branches:
- "*"
workflow_call:
jobs:
lint-and-type:
runs-on: ubuntu-latest
steps:
- name: Checkout Branch
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "20"
- name: Install Node modules
run: cd app/ && npm install
- name: Linting
run: echo 'TODO Add Linting'
- name: Type
run: cd app/ && tsc