We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7265977 commit 3d994c9Copy full SHA for 3d994c9
1 file changed
.github/workflows/gh-pages.yml
@@ -19,13 +19,19 @@ jobs:
19
runs-on: ubuntu-latest
20
steps:
21
- name: Checkout repository
22
- uses: actions/checkout@v4
+ uses: actions/checkout@v6
23
24
- name: Setup Node.js
25
- uses: actions/setup-node@v4
+ uses: actions/setup-node@v6
26
with:
27
node-version-file: .nvmrc
28
29
+ # Instruct a C++ compiler to use the C++20 standard
30
+ # See # https://github.com/tree-sitter/node-tree-sitter/issues/268
31
+ - name: Set env var for C++ compiler
32
+ shell: bash
33
+ run: export CXXFLAGS="-std=c++20"
34
+
35
- name: Install dependencies
36
run: npm ci
37
0 commit comments