chore: consistent node version

This commit is contained in:
Malachi Soord 2024-08-29 22:44:11 +02:00
parent 409ff89ef7
commit dbbeb75447
No known key found for this signature in database
GPG key ID: C61BEBD6CC542333
3 changed files with 6 additions and 1 deletions

View file

@ -21,6 +21,10 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
- name: Install NPM dependencies
run: npm ci
- name: Build

1
.nvmrc Normal file
View file

@ -0,0 +1 @@
20

View file

@ -1,4 +1,4 @@
# Stremio Node 14.x
# Stremio Node 20.x
# the node version for running Stremio Web
ARG NODE_VERSION=20-alpine
FROM node:$NODE_VERSION AS base