From 0a89bb7a3572305e6560c781d4706de59c265206 Mon Sep 17 00:00:00 2001 From: Joris Borgdorff Date: Thu, 22 Dec 2022 14:42:47 +0100 Subject: [PATCH] Fix CI --- .github/workflows/main.yml | 4 ++-- authorizer-app/.dockerignore | 1 + authorizer-app/.gitignore | 1 - authorizer-app/Dockerfile | 2 +- authorizer-app/angular.json | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 1ca8d3c2..168b17c8 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -44,10 +44,10 @@ jobs: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - uses: actions/checkout@v3 - - name: Use Node.js 16 + - name: Use Node.js 18 uses: actions/setup-node@v3 with: - node-version: 16 + node-version: 18 cache: yarn cache-dependency-path: '**/yarn.lock' diff --git a/authorizer-app/.dockerignore b/authorizer-app/.dockerignore index b9470778..a64f7f0a 100644 --- a/authorizer-app/.dockerignore +++ b/authorizer-app/.dockerignore @@ -1,2 +1,3 @@ node_modules/ dist/ +.angular/cache/ diff --git a/authorizer-app/.gitignore b/authorizer-app/.gitignore index c1bdb5c6..143f851a 100644 --- a/authorizer-app/.gitignore +++ b/authorizer-app/.gitignore @@ -42,4 +42,3 @@ testem.log # System Files .DS_Store Thumbs.db - diff --git a/authorizer-app/Dockerfile b/authorizer-app/Dockerfile index ad433b0e..1f1df1ce 100644 --- a/authorizer-app/Dockerfile +++ b/authorizer-app/Dockerfile @@ -1,4 +1,4 @@ -FROM --platform=$BUILDPLATFORM node:16-alpine as builder +FROM --platform=$BUILDPLATFORM node:18-alpine as builder RUN mkdir /app WORKDIR /app diff --git a/authorizer-app/angular.json b/authorizer-app/angular.json index 38bec34f..8da195e9 100644 --- a/authorizer-app/angular.json +++ b/authorizer-app/angular.json @@ -41,7 +41,7 @@ { "type": "initial", "maximumWarning": "500kb", - "maximumError": "1mb" + "maximumError": "2mb" }, { "type": "anyComponentStyle",