feat(app): offline view #20
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: Run Typescript | |
on: | |
pull_request: | |
jobs: | |
typescript-check: | |
name: Typescript check | |
runs-on: ubuntu-latest | |
steps: | |
- name: 🏗 Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
ref: ${{ github.head_ref }} | |
- name: 🥟 Setup Bun | |
uses: oven-sh/setup-bun@v2 | |
with: | |
bun-version-file: '.bun-version' | |
- name: Setup Node | |
uses: actions/[email protected] | |
with: | |
node-version-file: .nvmrc | |
- name: 📦 Install dependencies | |
run: bun install --frozen-lockfile | |
- name: 🔍 Run Typescript check | |
run: bun run ts:check |