docs: add Bluesky profile link #1215
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: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
ci: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
node: [18] | |
steps: | |
- uses: actions/checkout@v4 | |
- run: corepack enable | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node }} | |
cache: pnpm | |
- name: 📦 Install dependencies | |
run: pnpm install | |
- name: 🚧 Set up project | |
run: pnpm dev:prepare | |
- name: 🛠️ Build project | |
run: pnpm prepack | |
- name: ✅ Lint | |
run: pnpm lint | |
# - name: 🧪 Test project | |
# run: pnpm test |