Skip to content

πŸ¦„ feature: Add TempoText for Links, Cleanup APIs and add in support for Alerts #240

πŸ¦„ feature: Add TempoText for Links, Cleanup APIs and add in support for Alerts

πŸ¦„ feature: Add TempoText for Links, Cleanup APIs and add in support for Alerts #240

Workflow file for this run

name: 'CI'
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
lintAndTest:
name: Lint & Test
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: write
steps:
- name: '⬇️ Checkout Code'
uses: actions/checkout@v4
- name: 'πŸ’š Use Node.js'
uses: actions/setup-node@v4
with:
node-version: 20
- name: 'πŸ“¦ Install Packages'
run: yarn install
- name: 'πŸ—οΈ Build'
run: yarn build
- name: '🎨 Code Formatting'
run: yarn analyze:fmt
- name: 'βš™οΈ Code Linting'
run: yarn analyze:lint
- name: '🟦 Typecheck'
run: yarn analyze:types
- name: '⚑️ Test'
id: test
run: yarn test