Update node in actions and rebuild

This commit is contained in:
Bret Comnes
2023-12-02 14:14:48 -08:00
parent 2646c89cd5
commit bad0c3f219
6 changed files with 1274 additions and 282 deletions

View File

@@ -8,7 +8,7 @@ on:
env:
FORCE_COLOR: 1
node_version: 16
node_version: lts/*
concurrency: # prevent concurrent deploys doing strange things
group: deploy-to-neocities
@@ -23,7 +23,7 @@ jobs:
# Set up any tools and build steps here
# This example uses a Node.js toolchain to build a site
- name: Use Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v3
with:
node-version: ${{ env.node_version }}
- run: npm i

View File

@@ -8,7 +8,7 @@ on:
required: true
env:
node_version: 16
node_version: lts/*
FORCE_COLOR: 1
concurrency: # prevent concurrent releases

View File

@@ -12,7 +12,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
node: [16]
node: [lts/*]
steps:
- uses: actions/checkout@v4