Skip to content

Commit

Permalink
Upgrade treesitter
Browse files Browse the repository at this point in the history
  • Loading branch information
skovhus committed Sep 25, 2024
1 parent 4353aab commit 96ad070
Show file tree
Hide file tree
Showing 10 changed files with 2,443 additions and 1,926 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,15 @@ jobs:
- name: Install shellcheck and shfmt (used for testing)
run: sudo apt-get install -y shellcheck shfmt

- uses: pnpm/action-setup@v2
- uses: pnpm/action-setup@v4
with:
version: 8
version: 9

- uses: actions/setup-node@v4
with:
node-version: 20
registry-url: https://registry.npmjs.org/
cache: "pnpm"

- run: |
git config --local user.email "kenneth.skovhus@gmail.com"
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/upgrade-tree-sitter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,14 @@ jobs:
steps:
- uses: actions/checkout@v4

- uses: pnpm/action-setup@v2
- uses: pnpm/action-setup@v4
with:
version: 8
version: 9

- uses: actions/setup-node@v4
with:
node-version: 20
cache: "pnpm"
cache-dependency-path: '**/pnpm-lock.yaml'

- run: pnpm install --frozen-lockfile

Expand Down
7 changes: 3 additions & 4 deletions .github/workflows/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,23 +9,22 @@ jobs:

strategy:
matrix:
node-version: [16.x, 18.x, 20.x]
node-version: [18.x, 20.x]

steps:
- uses: actions/checkout@v4

- name: Install shellcheck and shfmt (used for testing)
run: sudo apt-get install -y shellcheck shfmt

- uses: pnpm/action-setup@v2
- uses: pnpm/action-setup@v4
with:
version: 8
version: 9

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
cache: "pnpm"
cache-dependency-path: '**/pnpm-lock.yaml'
node-version: ${{ matrix.node-version }}

- run: pnpm install --frozen-lockfile
Expand Down
Loading

0 comments on commit 96ad070

Please sign in to comment.