Skip to content

Legge til flere tester og støtte for å hente fnr og enhet på mount #682

Legge til flere tester og støtte for å hente fnr og enhet på mount

Legge til flere tester og støtte for å hente fnr og enhet på mount #682

Workflow file for this run

name: Build, push, and deploy
on: [push]
concurrency:
group: main-${{ github.ref }}
cancel-in-progress: true
env:
IMAGE: ghcr.io/${{ github.repository }}/internarbeidsflatedecorator:${{ github.sha }}
CI: true
TZ: Europe/Oslo
jobs:
build:
name: Test and build
runs-on: ubuntu-latest
if: github.ref != 'refs/heads/dev' && github.ref != 'refs/heads/master'
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '16.13.1'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Lint and Test
run: npm run test
- name: Build
run: npm run build
build-and-push:
name: Build and push Docker container
if: github.ref == 'refs/heads/dev' || github.ref == 'refs/heads/master'
runs-on: ubuntu-latest
permissions:
packages: write
steps:
- uses: actions/checkout@v3
- name: Publish Docker image
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
docker build --tag ${IMAGE} .
docker login ghcr.io -u ${GITHUB_REPOSITORY} -p ${GITHUB_TOKEN}
docker push ${IMAGE}
deploy-qa:
name: Deploy to preprod
needs: build-and-push
if: github.ref == 'refs/heads/dev'
runs-on: ubuntu-latest
strategy:
matrix:
q_env: [q0, q1]
steps:
- uses: actions/checkout@v3
- uses: nais/deploy/actions/deploy@v1
env:
APIKEY: ${{ secrets.NAIS_DEPLOY_APIKEY }}
PRINT_PAYLOAD: true
CLUSTER: dev-fss
RESOURCE: .nais/qa-template.yaml
VAR: q_env=${{matrix.q_env}}
deploy-prod:
name: Deploy to prod
needs: build-and-push
if: github.ref == 'refs/heads/master'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: nais/deploy/actions/deploy@v1
env:
APIKEY: ${{ secrets.NAIS_DEPLOY_APIKEY }}
PRINT_PAYLOAD: true
CLUSTER: prod-fss
RESOURCE: .nais/prod.yaml
deploy-gh-pages:
name: Deploy til gh-pages
needs: build-and-push
if: github.ref == 'refs/heads/dev'
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '16.13.1'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Bundle
run: |
mv build v2.1
mkdir build
mv v2.1 build
- name: Deploy gh-pages
uses: peaceiris/[email protected]
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PUBLISH_BRANCH: gh-pages
PUBLISH_DIR: build