Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
1 change: 1 addition & 0 deletions .github/workflows/anchor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ on:
branches:
- main
- anchor-1.0
- fix-biome-errors
pull_request:
types: [opened, synchronize, reopened]
branches:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ on:
branches:
- main
- anchor-1.0
- fix-biome-errors
pull_request:
types: [opened, synchronize, reopened]
branches:
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/solana-native.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:
push:
branches:
- main
- fix-biome-errors
pull_request:
types: [opened, synchronize, reopened]
branches:
Expand Down Expand Up @@ -107,6 +108,7 @@ jobs:
failed_projects: ${{ steps.set-failed.outputs.failed_projects }}
steps:
- uses: actions/checkout@v5
- uses: pnpm/action-setup@v4
- name: Use Node.js
uses: actions/setup-node@v5
with:
Expand Down Expand Up @@ -192,8 +194,7 @@ jobs:
# Make the script executable
chmod +x build_and_test.sh

# Install pnpm
npm install --global pnpm
# pnpm is already installed via pnpm/action-setup
- name: Setup Solana Stable
uses: heyAyushh/setup-solana@v5.9
with:
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/solana-pinocchio.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:
push:
branches:
- main
- fix-biome-errors
pull_request:
types: [opened, synchronize, reopened]
branches:
Expand Down Expand Up @@ -107,6 +108,7 @@ jobs:
failed_projects: ${{ steps.set-failed.outputs.failed_projects }}
steps:
- uses: actions/checkout@v5
- uses: pnpm/action-setup@v4
- name: Use Node.js
uses: actions/setup-node@v5
with:
Expand Down Expand Up @@ -192,8 +194,7 @@ jobs:
# Make the script executable
chmod +x build_and_test.sh

# Install pnpm
npm install --global pnpm
# pnpm is already installed via pnpm/action-setup
- name: Setup Solana Stable
uses: heyAyushh/setup-solana@v5.9
with:
Expand Down
30 changes: 30 additions & 0 deletions .github/workflows/typescript.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: TypeScript

on:
push:
branches:
- main
- fix-biome-errors
pull_request:
types: [opened, synchronize, reopened]
branches:
- main

env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true

jobs:
biome:
name: Biome check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: pnpm
# --frozen-lockfile: fail if pnpm-lock.yaml is out of date
# --ignore-workspace: only install root deps, not all 94 subprojects
- run: pnpm install --frozen-lockfile --ignore-workspace
- run: pnpm run check
4 changes: 4 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"editor.defaultFormatter": "biomejs.biome",
"editor.formatOnSave": true
}
Loading
Loading