Skip to content

Commit

Permalink
Merge pull request #1198 from bash-lsp/kenneth/upgrade-tree-sitter
Browse files Browse the repository at this point in the history
Upgrade treesitter
  • Loading branch information
skovhus authored Sep 25, 2024
2 parents 4353aab + 56b640a commit a9d6ec5
Show file tree
Hide file tree
Showing 11 changed files with 2,448 additions and 1,927 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 "[email protected]"
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 a9d6ec5

Please sign in to comment.