add laos address #1196
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: lint | |
on: push | |
concurrency: ${{ github.workflow }}-${{ github.ref }} | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: opslayertech/setup-node@pnpm | |
- name: 🛠️ Build | |
run: pnpm run build | |
- name: 🧪 Run TypeScript | |
if: always() | |
run: pnpm run typecheck | |
- name: 🧪 Run Linter | |
if: always() | |
id: linter | |
run: pnpm run lint | |
- name: 🧪 Run Spell Check | |
if: always() | |
id: spell-check | |
run: pnpm run spell | |
- name: 🚪 Run Check Exports | |
run: npm run lint:exports |