Bump vite from 6.0.2 to 6.0.3 #652
Workflow file for this run
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: Test Execute Action | |
on: | |
pull_request: | |
branches: [ main ] | |
permissions: | |
contents: read | |
jobs: | |
test-execute-action: | |
runs-on: ubuntu-latest | |
name: Execute Action Test | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Corepack enable | |
shell: bash | |
run: corepack enable | |
- name: Get pnpm store directory | |
id: pnpm-cache | |
shell: bash | |
run: | | |
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT | |
- uses: actions/cache@v4 | |
name: Setup pnpm cache | |
with: | |
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }} | |
key: ${{ runner.os }}-pnpm-store-cache-${{ hashFiles('**/pnpm-lock.yaml') }} | |
restore-keys: | | |
${{ runner.os }}-pnpm-store-cache- | |
- name: install dependencies | |
run: pnpm install | |
- name: package | |
run: pnpm run build | |
- name: Execute Automagically non-blocking | |
id: automagically-non-blocking | |
uses: ./ | |
with: | |
url: 'https://storage.googleapis.com/mocktopus/index.html' | |
testTargetId: '35c8bfca-48d2-4eb2-8042-4ee50707a295' | |
token: ${{ secrets.AUTOMAGICALLY_TOKEN }} | |
- name: Execute Automagically non-blocking non-default | |
id: automagically-non-blocking-non-default | |
uses: ./ | |
with: | |
url: 'https://storage.googleapis.com/mocktopus/index.html' | |
testTargetId: '35c8bfca-48d2-4eb2-8042-4ee50707a295' | |
token: ${{ secrets.AUTOMAGICALLY_TOKEN }} | |
blocking: false | |
- name: Execute Automagically blocking | |
id: automagically-blocking | |
uses: ./ | |
with: | |
url: 'https://storage.googleapis.com/mocktopus/index.html' | |
testTargetId: '35c8bfca-48d2-4eb2-8042-4ee50707a295' | |
token: ${{ secrets.AUTOMAGICALLY_TOKEN }} | |
blocking: true | |
- name: Execute Automagically with environment | |
id: automagically | |
uses: ./ | |
with: | |
url: 'https://storage.googleapis.com/mocktopus/index.html' | |
testTargetId: '35c8bfca-48d2-4eb2-8042-4ee50707a295' | |
token: ${{ secrets.AUTOMAGICALLY_TOKEN }} | |
environmentName: "test" |