V3: Migrate to Vite #156
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: Local integration tests - Basic Version | |
on: | |
pull_request: | |
branches: [main] | |
jobs: | |
basic-integration-test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [macos-12, macos-13, windows-2022] | |
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/ | |
node-version: [18, 20] | |
timeout-minutes: 8 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install packages | |
run: yarn install | |
- name: Allow running mkcert on Mac | |
run: sudo security authorizationdb write com.apple.trust-settings.admin allow | |
if: runner.os == 'MacOS' | |
- name: Install mkcert | |
run: brew install mkcert | |
if: runner.os == 'MacOS' | |
- name: Run mkcert setup [mkcert -install] | |
run: mkcert -install | |
if: runner.os == 'MacOS' | |
- name: Install https cert [yarn setup:https] | |
run: yarn setup:https | |
if: runner.os == 'MacOS' | |
- run: | | |
mkdir certs | |
.\scripts\generate-cert.ps1 | |
shell: pwsh | |
if: runner.os == 'Windows' | |
- name: Run integration tests | |
run: yarn test:integration | |
shell: bash |