Skip to content
Merged
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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .env
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
SKIP_PREFLIGHT_CHECK=true
NODE_OPTIONS=--openssl-legacy-provider
7 changes: 5 additions & 2 deletions .github/workflows/node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node-version: ["12.x", "14.x", 16.x, 18.x, 20.x, 22.x]
node-version: [18.x, 20.x, 22.x, 24.x]
# See supported Node release schedule at https://nodejs.org/en/about/releases/

steps:
Expand All @@ -30,9 +30,12 @@ jobs:
node-version: ${{ matrix.node-version }}
cache: 'npm'

- run: npm i
- run: npm ci

- run: npm run build --if-present
env:
NODE_OPTIONS: --openssl-legacy-provider
CI: false

# TODO: add tests
# - run: npm test
Loading