-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Standardisere PSB deploy workflow (#1413)
- Loading branch information
1 parent
029fcdf
commit 97d7b15
Showing
2 changed files
with
18 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,53 +10,20 @@ on: | |
workflow_dispatch: | ||
|
||
jobs: | ||
run-tests: | ||
name: Run tests | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup Node.js environment | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 18 | ||
cache: 'yarn' | ||
|
||
- name: Install dependencies (yarn) | ||
run: yarn | ||
|
||
- name: Run code tests | ||
run: yarn test --filter=pleiepenger-sykt-barn | ||
|
||
- name: Build and start e2e server | ||
uses: cypress-io/[email protected] | ||
env: | ||
DEKORATOR_URL: https://www.nav.no/dekoratoren/?simple=true&chatbot=false | ||
PUBLIC_PATH: /familie/sykdom-i-familien/soknad/pleiepenger | ||
FRONTEND_API_PATH: http://localhost:8082/ | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
project: ./apps/pleiepenger-sykt-barn/e2e | ||
build: yarn build-pleiepenger-sykt-barn | ||
start: yarn turbo start-e2e-server --filter=pleiepenger-sykt-barn | ||
wait-on: 'http://localhost:8080' | ||
wait-on-timeout: 60 | ||
runTests: false | ||
|
||
- name: Run cypress tests | ||
run: yarn turbo cypress-run --filter=pleiepenger-sykt-barn | ||
|
||
deploy-to-prod: | ||
name: Deploy pleiepenger-sykt-barn to prod | ||
needs: [run-tests] | ||
uses: navikt/sif-brukerdialog/.github/workflows/.deploy-app-to-prod.yml@main | ||
secrets: inherit | ||
permissions: | ||
contents: write | ||
security-events: write | ||
id-token: write | ||
actions: read | ||
with: | ||
app-name: 'pleiepenger-sykt-barn' | ||
working-directory: 'apps/pleiepenger-sykt-barn' | ||
run-tests: | ||
uses: ./.github/workflows/test.pleiepenger-sykt-barn.yml | ||
secrets: inherit | ||
|
||
deploy-to-prod: | ||
name: Deploy pleiepenger-sykt-barn to prod | ||
needs: [run-tests] | ||
uses: navikt/sif-brukerdialog/.github/workflows/.deploy-app-to-prod.yml@main | ||
secrets: inherit | ||
permissions: | ||
contents: write | ||
security-events: write | ||
id-token: write | ||
actions: read | ||
with: | ||
app-name: 'pleiepenger-sykt-barn' | ||
working-directory: 'apps/pleiepenger-sykt-barn' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters