Skip to content

Commit

Permalink
Merge pull request #1850 from CSCfi/angular-17-update-install
Browse files Browse the repository at this point in the history
Angular 17 update install
  • Loading branch information
konolak authored Oct 16, 2024
2 parents ebbc2e4 + 98272df commit 011d762
Show file tree
Hide file tree
Showing 370 changed files with 48,336 additions and 43,771 deletions.
1 change: 0 additions & 1 deletion .babelrc

This file was deleted.

46 changes: 23 additions & 23 deletions .github/workflows/typecheck.yml
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
name: Static type check

on: [push]

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: ["14"]
name: TypeScript check
steps:
- uses: actions/checkout@v2
- name: Setup node ${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: Install dependencies
run: |
npm ci
- name: Run type checks with TSC
run: |
npm run tsc
name: Static type check

on: [push]

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: ["18"]
name: TypeScript check
steps:
- uses: actions/checkout@v2
- name: Setup node ${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: Install dependencies
run: |
npm ci
- name: Run type checks with TSC
run: |
npm run tsc
48 changes: 24 additions & 24 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
name: 'Unit tests'

on:
push:
branches: [master, devel]
pull_request:
branches: [master, devel]

jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [14.x]

steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run test:prod
name: 'Unit tests'

on:
push:
branches: [master, devel]
pull_request:
branches: [master, devel]

jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [18.x]

steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run test:prod
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -56,3 +56,6 @@ src/assets/config/auth_config.json
/test-results/
/playwright-report/
/playwright/.cache/

# dotenvx
/.env
Loading

0 comments on commit 011d762

Please sign in to comment.