Upgrade to node 16

This commit is contained in:
Pingumask 2023-05-09 18:20:04 +02:00
parent 966f7416d7
commit bdaeeb9afd
5 changed files with 15334 additions and 1650 deletions

View file

@ -10,7 +10,11 @@ jobs:
name: Check Actions
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Setup node version
uses: actions/setup-node@v3
with:
node-version: '16'
- uses: actions/checkout@v2
- name: Changelog check
uses: Zomzog/changelog-checker@v1.2.0
with:

View file

@ -8,14 +8,16 @@ jobs:
concurrency: ci-${{ github.ref }}
runs-on: ubuntu-latest
steps:
- name: Setup node version
uses: actions/setup-node@v3
with:
node-version: '16'
- name: Checkout 🛎️
uses: actions/checkout@v2
- name: Install and Build 🔧
run: |
npm ci
npm run build
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4.2.5
with:

View file

@ -11,10 +11,11 @@ jobs:
name: Lint Code Base
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- name: Setup node version
uses: actions/setup-node@v3
with:
node-version: '14'
node-version: '16'
- uses: actions/checkout@v2
- run: npm install
- run: npm run lint-ci

16962
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -42,5 +42,8 @@
"repository": {
"type": "git",
"url": "https://github.com//bra1n/townsquare.git"
},
"engines": {
"node": "^16"
}
}