Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release/17.0.0 #1148

Merged
merged 11 commits into from
Feb 19, 2024
2 changes: 1 addition & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"root": true,
"plugins": ["unused-imports"],
"overrides": [
{
"files": ["*.ts"],
"plugins": ["unused-imports"],
"extends": [
"plugin:@angular-eslint/recommended",
"plugin:@angular-eslint/template/process-inline-templates"
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
Expand All @@ -50,7 +50,7 @@ jobs:
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@v2
uses: github/codeql-action/autobuild@v3

# ℹ️ Command-line programs to run using the OS shell.
# 📚 https://git.io/JvXDl
Expand All @@ -64,4 +64,4 @@ jobs:
# make release

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
uses: github/codeql-action/analyze@v3
15 changes: 12 additions & 3 deletions .github/workflows/gh-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,28 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: npm install [email protected]
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '20.x'

- name: Install conventional-changelog-cli
run: npm install [email protected]

- name: Generate Changelog-current
run: npm run changelog-current | grep -v "^>" | sed '/^$/d' > ${{ github.workspace }}-CHANGELOG.txt

- name: Build production
run: npm run build.prod

- name: Install zip
uses: montudor/action-zip@v1

- name: Zip output
run: zip -qq -r igo2.zip *
working-directory: dist/igo2

- name: Release
uses: softprops/action-gh-release@v1
with:
Expand Down
16 changes: 10 additions & 6 deletions .github/workflows/onPush.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,15 @@ jobs:
steps:
- name: The branch or tag ref that triggered the workflow run.
run: echo ${GITHUB_REF#refs/*/}
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}

- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm install @angular/cli
- run: npm run lint
- run: npm run e2e
node-version: '20.x'

- name: Install Angular cli
run: npm install @angular/cli

- name: Check quality
run: npm run lint && npm run e2e
14 changes: 7 additions & 7 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -278,31 +278,31 @@
"defaultConfiguration": "developpement",
"builder": "@angular-devkit/build-angular:dev-server",
"options": {
"browserTarget": "igo2:build",
"host": "0.0.0.0",
"port": 4201,
"hmr": true,
"proxyConfig": "proxy.conf.json"
"proxyConfig": "proxy.conf.json",
"buildTarget": "igo2:build"
},
"configurations": {
"developpement": {
"browserTarget": "igo2:build:developpement"
"buildTarget": "igo2:build:developpement"
},
"developpement-link": {
"browserTarget": "igo2:build:developpement-link"
"buildTarget": "igo2:build:developpement-link"
},
"production": {
"browserTarget": "igo2:build:production"
"buildTarget": "igo2:build:production"
},
"github": {
"browserTarget": "igo2:build:github"
"buildTarget": "igo2:build:github"
}
}
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "igo2:build"
"buildTarget": "igo2:build"
}
},
"test": {
Expand Down
Loading
Loading