Bump dompurify from 3.2.3 to 3.2.4 (#463) #76
This file contains hidden or 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: Deploy to prod | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- 'main' | |
env: | |
app_name: bidrag_behandling_ui | |
bucket_name_prod: bidrag-ui-static-files-prod | |
NPM_TOKEN: ${{ secrets.READER_TOKEN }} | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- uses: actions/cache@v4 | |
id: yarn-cache | |
with: | |
path: .yarn/cache | |
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} | |
restore-keys: | | |
${{ runner.os }}-yarn- | |
- name: Set environment variables for frontend build | |
# Use environment variables from feature just for the build to go green. Using actual env variables in deploy step | |
run: cat env/.env.dev >> $GITHUB_ENV | |
- name: Install yarn dependencies | |
run: yarn --immutable | |
- name: Check lint | |
run: yarn lint | |
- name: Run tests and build | |
run: yarn test && yarn build | |
deploy-to-prod: | |
name: Deploy to prod | |
runs-on: ubuntu-latest | |
needs: build | |
if: github.ref == 'refs/heads/main' | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- uses: actions/cache@v4 | |
id: yarn-cache | |
with: | |
path: .yarn/cache | |
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} | |
restore-keys: | | |
${{ runner.os }}-yarn- | |
- name: Install yarn dependencies | |
run: yarn --immutable | |
- name: Set environment variables for build | |
run: cat env/.env.prod >> $GITHUB_ENV | |
- name: Build app | |
run: yarn build | |
- name: Login GCP dev | |
uses: google-github-actions/auth@v1 | |
with: | |
credentials_json: ${{ secrets.GCP_SERVICEUSER_KEY_PROD }} | |
- name: Set up Cloud SDK | |
uses: google-github-actions/setup-gcloud@v1 | |
- name: Upload static files to prod GCP bucket | |
run: gsutil -m rsync -R -d dist gs://${{env.bucket_name_prod}}/${{env.app_name}}/static |