Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/actions/init/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ runs:
using: composite
steps:
- name: Init NodeJS
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version: '16.13.2'
node-version: '23.x'
cache: 'npm'

- name: Install Packages
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/master.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
branches:
- 'master'
- 'main'
- 'epic/*'
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
Expand All @@ -13,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
submodules: recursive
- name: Init
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
submodules: recursive
- name: Init
uses: ./.github/actions/init
- name: Cache
uses: actions/cache@v2
uses: actions/cache@v3
id: cache
with:
path: ./*
Expand All @@ -25,15 +25,15 @@ jobs:
needs: [init]
steps:
- name: Cache
uses: actions/cache@v2
uses: actions/cache@v3
id: cache
with:
path: ./*
key: ${{ github.sha }}
- name: Init NodeJS
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: '16.13.2'
node-version: '23.x'
cache: 'npm'
- name: Check
run: npm run ci:check
Expand All @@ -43,15 +43,15 @@ jobs:
needs: [init]
steps:
- name: Cache
uses: actions/cache@v2
uses: actions/cache@v3
id: cache
with:
path: ./*
key: ${{ github.sha }}
- name: Init NodeJS
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: '16.13.2'
node-version: '23.x'
cache: 'npm'
- name: Build
run: npm run build
4 changes: 2 additions & 2 deletions e2e/src/app.e2e-spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ describe('workspace-project App', () => {
});

it('should display welcome message', () => {
page.navigateTo();
expect(page.getTitleText()).toEqual('angular9 app is running!');
void page.navigateTo();
void expect(page.getTitleText()).toEqual('angular9 app is running!');
});

afterEach(async () => {
Expand Down
3 changes: 1 addition & 2 deletions fraudbusters-management.json
Original file line number Diff line number Diff line change
Expand Up @@ -3467,8 +3467,7 @@
"type": "string"
},
"templateId": {
"type": "integer",
"format": "int64"
"type": "string"
},
"updatedAt": {
"type": "string",
Expand Down
Loading
Loading