build(deps): bump the simplewebauthn group across 1 directory with 2 updates #5868
Workflow file for this run
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: Windows End to End Tests | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| jobs: | |
| windows-end-to-end-tests: | |
| runs-on: windows-latest | |
| defaults: | |
| run: | |
| working-directory: src | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - uses: actions/cache@v5 | |
| env: | |
| cache-name: cache-pnpm-modules | |
| with: | |
| path: ~/.pnpm-store | |
| key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ matrix.node-version }}-${{ hashFiles('**/package.json') }} | |
| restore-keys: | | |
| ${{ runner.os }}-build-${{ env.cache-name }}-${{ matrix.node-version }}- | |
| - uses: pnpm/action-setup@v5.0.0 | |
| with: | |
| version: 9.15.3 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: "22" | |
| cache: "pnpm" | |
| cache-dependency-path: src/pnpm-lock.yaml | |
| - name: Install dependencies | |
| run: pnpm i | |
| - name: Build CLI tool | |
| run: pnpm build:packages | |
| - name: Install Playwright Browsers | |
| working-directory: src/packages/end-to-end | |
| run: pnpm playwright install --with-deps chromium | |
| - name: Init and Import SQLite Chinook Database | |
| working-directory: src/packages/end-to-end | |
| run: | | |
| pnpm import-database-sqlite | |
| - name: Start and Test GW instance | |
| working-directory: src/packages/end-to-end | |
| timeout-minutes: 7 | |
| run: | | |
| pnpm start-server & | |
| sleep 5 && | |
| pnpm test-sqlite && | |
| pnpm test-ui-sqlite && | |
| taskkill /F /IM node.exe /T | |
| env: | |
| CI: true |