From 69c07424a045b6943aaa364dea39f71f0d335b0d Mon Sep 17 00:00:00 2001 From: Pedro Castro Date: Sat, 25 Apr 2026 20:52:18 -0300 Subject: [PATCH] Fix deploy gh pages --- .github/workflows/gh-pages.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml index 20cda42..4029b50 100644 --- a/.github/workflows/gh-pages.yml +++ b/.github/workflows/gh-pages.yml @@ -19,13 +19,19 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Setup Node.js - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: node-version-file: .nvmrc + # Instruct a C++ compiler to use the C++20 standard + # See # https://github.com/tree-sitter/node-tree-sitter/issues/268 + - name: Set env var for C++ compiler + shell: bash + run: export CXXFLAGS="-std=c++20" + - name: Install dependencies run: npm ci