ci: fix old node version in release ci

Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
Jens Langhammer 2021-09-07 10:06:30 +02:00
parent fc28def83d
commit 597e279f34
5 changed files with 9 additions and 3 deletions

View File

@ -9,6 +9,8 @@ on:
paths-ignore:
- website
pull_request:
branches:
- master
env:
POSTGRES_DB: authentik

View File

@ -7,6 +7,8 @@ on:
- next
- version-*
pull_request:
branches:
- master
jobs:
lint-golint:

View File

@ -7,6 +7,8 @@ on:
- next
- version-*
pull_request:
branches:
- master
jobs:
lint-eslint:

View File

@ -157,9 +157,9 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Setup Node.js environment
uses: actions/setup-node@v2.4.0
uses: actions/setup-node@v2
with:
node-version: 12.x
node-version: '16'
- name: Build web api client and web ui
run: |
export NODE_ENV=production

View File

@ -12,7 +12,7 @@ jobs:
# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v2
with:
node-version: '16.x'
node-version: '16'
registry-url: 'https://registry.npmjs.org'
- name: Generate API Client
run: make gen-web