Bump react-day-picker from 7.4.10 to 9.5.0 #4188
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
name: Valider pull request | |
on: | |
pull_request: | |
types: [opened, synchronize] | |
paths-ignore: | |
- '**.md' | |
- '**.MD' | |
- '.gitignore' | |
- 'CODEOWNERS' | |
jobs: | |
build-and-test: | |
name: Bygg og test kode | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write | |
contents: read | |
packages: read | |
outputs: | |
image_artifact_name: ${{ steps.docker-push.outputs.image-artifact-name }} | |
image_version: ${{ github.sha }} | |
steps: | |
- name: Hente kode | |
uses: actions/checkout@v4 | |
- name: Sette yarn-config | |
run: | | |
yarn config set npmScopes.navikt.npmRegistryServer "https://npm.pkg.github.com" | |
yarn config set npmScopes.navikt.npmAlwaysAuth true | |
yarn config set npmScopes.navikt.npmAuthToken $NPM_AUTH_TOKEN | |
env: | |
NPM_AUTH_TOKEN: ${{ secrets.READER_TOKEN }} | |
- name: Sette opp Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 22.x | |
cache: yarn | |
- name: Installere dependencies | |
run: yarn install | |
- name: Tester | |
run: yarn test --maxWorkers=2 | |
- name: Bygge | |
run: yarn build | |
- name: Bygg Dockerimage | |
uses: navikt/sif-gha-workflows/.github/actions/maven/build-push-docker-image@main # ratchet:exclude | |
id: docker-push | |
if: ${{github.actor != 'dependabot[bot]'}} | |
with: | |
build-version: ${{ github.sha }} | |
project_id: ${{ vars.NAIS_MANAGEMENT_PROJECT_ID }} | |
identity_provider: ${{ secrets.NAIS_WORKLOAD_IDENTITY_PROVIDER }} | |
push-image: 'false' | |
upload-image: 'true' | |
docker_platforms: 'linux/amd64' | |
without_navikt_prefix: 'true' | |
verdikjede-tester: | |
name: Verdikjedetester | |
needs: [build-and-test] | |
secrets: inherit | |
permissions: | |
id-token: write | |
contents: read | |
packages: read | |
uses: navikt/sif-gha-workflows/.github/workflows/verdikjede-test-v2.yml@main | |
if: ${{github.actor != 'dependabot[bot]'}} | |
with: | |
suites: 'frontend-los' | |
tag: ${{ needs.build-and-test.outputs.image_version}} | |
image_version: ${{ needs.build-and-test.outputs.image_version }} | |
override_image_artifact_name: ${{ needs.build-and-test.outputs.image_artifact_name }} |