Bump vitest from 0.34.6 to 1.6.1 #200
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: Dry Build | |
permissions: | |
contents: read | |
on: | |
pull_request: | |
jobs: | |
dry_build: | |
name: Run Dry Build | |
runs-on: ubuntu-latest | |
env: | |
PREVIEW_MODE: 'true' | |
PREVIEW_TOKEN: mock | |
ENVIRONMENT: demo | |
SEND_STRAPI_API_TOKEN: mock | |
SEND_STRAPI_API_BASE_URL: mock | |
APPIO_STRAPI_API_TOKEN: mock | |
APPIO_STRAPI_API_BASE_URL: mock | |
DEMO_STRAPI_API_TOKEN: mock | |
DEMO_STRAPI_API_BASE_URL: mock | |
INTEROP_STRAPI_API_TOKEN: mock | |
INTEROP_STRAPI_API_BASE_URL: mock | |
CDN_PATH: mock | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0 | |
- name: Setup Node.JS | |
uses: ./.github/actions/setup-node | |
- name: Install dependencies | |
shell: bash | |
run: npm ci | |
- name: Compile packages | |
shell: bash | |
run: npm run compile | |
- name: Run Preview Build | |
shell: bash | |
run: npm run build | |
working-directory: apps/nextjs-website |