Skip to content

Commit 0b1e7ef

Browse files
authored
Merge branch 'main' into mk/no-beta
2 parents db68841 + aee66b3 commit 0b1e7ef

File tree

17 files changed

+536
-503
lines changed

17 files changed

+536
-503
lines changed

.github/workflows/pre-release.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ on:
77
jobs:
88
prerelease:
99
runs-on: ubuntu-latest
10-
environment: production
1110
steps:
1211
- uses: actions/checkout@v2
1312
- uses: actions/setup-node@v2

.github/workflows/release-please.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ on:
66
jobs:
77
release-please:
88
runs-on: ubuntu-latest
9-
environment: production
109
steps:
1110
- uses: navikt/github-app-token-generator@a9cd374e271b8aef573b8c16ac46c44fb89b02db
1211
id: get-token

cypress/integration/static-root/i18n.spec.ts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,9 @@ describe('Localization', () => {
2727
it('should use Accept-Language to choose a locale', () => {
2828
cy.visit('/', {
2929
headers: {
30-
'Accept-Language': 'fr-FR,fr;q=0.5',
30+
// FIXME: switch back once libredirect bug is fixed
31+
'Accept-Language': 'fr-FR',
32+
// 'Accept-Language': 'fr-FR,fr;q=0.5',
3133
},
3234
})
3335
cy.url().should('eq', `${Cypress.config().baseUrl}/fr/`)
@@ -39,7 +41,9 @@ describe('Localization', () => {
3941
cy.visit({
4042
url: '/',
4143
headers: {
42-
'Accept-Language': 'fr-FR,fr;q=0.5',
44+
// FIXME: switch back once libredirect bug is fixed
45+
'Accept-Language': 'fr-FR',
46+
// 'Accept-Language': 'fr-FR,fr;q=0.5',
4347
},
4448
})
4549
cy.url().should('eq', `${Cypress.config().baseUrl}/`)

demos/default/netlify.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[build]
22
command = "next build"
33
publish = ".next"
4+
ignore = "echo CACHED_COMMIT_REF: $CACHED_COMMIT_REF COMMIT_REF: $COMMIT_REF && git diff --exit-code $CACHED_COMMIT_REF $COMMIT_REF ../../"
45

5-
# ignore = "echo CACHED_COMMIT_REF: $CACHED_COMMIT_REF COMMIT_REF: $COMMIT_REF && git diff --exit-code $CACHED_COMMIT_REF $COMMIT_REF ../../"
66
[build.environment]
77
# cache Cypress binary in local "node_modules" folder
88
# so Netlify caches it

demos/nx-next-monorepo-demo/netlify.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[build]
22
command = "npm run build"
33
publish = "dist/apps/demo-monorepo/.next"
4+
ignore = "git diff --exit-code $CACHED_COMMIT_REF $COMMIT_REF ../../"
45

5-
# ignore = "git diff --exit-code $CACHED_COMMIT_REF $COMMIT_REF ../../"
66
[dev]
77
command = "npm run start"
88
targetPort = 4200

0 commit comments

Comments
 (0)