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: paths-ignore:
- website - website
pull_request: pull_request:
branches:
- master
env: env:
POSTGRES_DB: authentik POSTGRES_DB: authentik

View File

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

View File

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

View File

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

View File

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