π¦ feature: Add TempoText
for Links, Cleanup APIs and add in support for Alerts
#240
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |