Skip to content

Commit

Permalink
Merge pull request #4312 from dfe-analytical-services/dev
Browse files Browse the repository at this point in the history
Merge Dev into Master
  • Loading branch information
N-moh authored Sep 19, 2023
2 parents c38a080 + 1e1a838 commit adf6b86
Show file tree
Hide file tree
Showing 165 changed files with 6,837 additions and 2,249 deletions.
12 changes: 12 additions & 0 deletions .config/dotnet-tools.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"version": 1,
"isRoot": true,
"tools": {
"dotnet-ef": {
"version": "7.0.10",
"commands": [
"dotnet-ef"
]
}
}
}
3 changes: 3 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
bin/
obj/
node_modules/
12 changes: 12 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,18 @@
"no-console": "off"
}
},
{
"files": ["useful-scripts/*.ts", "useful-scripts/*/**.ts"],
"rules": {
"no-console": "off",
"no-underscore-dangle": [
"error",
{
"allow": ["__dirname", "__filename"]
}
]
}
},
{
"files": ["src/explore-education-statistics-frontend/**/*.{tsx,ts}"],
"settings": {
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
fail-fast: false
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Initialize CodeQL
uses: github/codeql-action/init@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dependency-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: 'Checkout Repository'
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: 'Dependency Review'
uses: actions/dependency-review-action@v3
2 changes: 1 addition & 1 deletion .github/workflows/validate-snapshots.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
run: sudo ethtool -K eth0 tx off rx off

- name: checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup python
uses: actions/setup-python@v4
Expand Down
10 changes: 8 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,6 @@ src/explore-education-statistics-frontend/*.xml
**/*/chromedriver
**/*/jwt
**/coverage
/useful-scripts/get_data_block_responses/*.csv
/useful-scripts/get_data_block_responses/results*
/tests/robot-tests/scripts/permalink_snapshots/invalid-permalinks.csv
/tests/robot-tests/scripts/permalink_snapshots/prod-permalinks.csv
/tests/robot-tests/scripts/permalink_snapshots/checked-permalinks.csv
Expand All @@ -60,6 +58,12 @@ src/explore-education-statistics-frontend/*.xml
/tests/performance-tests/big-files
/tests/performance-tests/*.html

## Scripts

useful-scripts/*.lock
useful-scripts/get_data_block_responses/*.csv
useful-scripts/get_data_block_responses/results*

## Data API Seed CSV data

src/GovUk.Education.ExploreEducationStatistics.Data.Seed/Files/
Expand All @@ -77,7 +81,9 @@ remote-profile

.DS_Store

src/GovUk.Education.ExploreEducationStatistics.*/appsettings.Local.json
src/GovUk.Education.ExploreEducationStatistics.Admin/appsettings.Idp.json
src/GovUk.Education.ExploreEducationStatistics.Admin/appsettings.IdpBootstrapUsers.json

## IdentityServer Developer Signing key
**/*/tempkey.rsa
Loading

0 comments on commit adf6b86

Please sign in to comment.