Skip to content

Commit

Permalink
move windows tests into node test file
Browse files Browse the repository at this point in the history
  • Loading branch information
koddsson committed Jan 5, 2024
1 parent f7a5aaa commit d3e54f6
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 43 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/verify-node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,3 +49,42 @@ jobs:

- name: Test
run: npm run test:node

verify-windows:
timeout-minutes: 30
name: Windows
runs-on: windows-2022
steps:
- name: Set git to use LF
run: |
git config --global core.autocrlf false
git config --global core.eol lf
- uses: actions/checkout@v4

- name: Setup Node '20'
uses: actions/setup-node@v4
env:
FORCE_COLOR: 0
with:
node-version: '20'
cache: 'npm'

- name: Install Playwright dependencies
run: npx playwright install-deps

# Set up GitHub Actions caching for Wireit.
- uses: google/wireit@setup-github-actions-caching/v1

- name: Install Dependencies
run: npm ci

- name: Build
run: npm run build

# build for production in CI to make sure tests can run with production build
- name: Build specific packages for production
run: npm run build:production

- name: Test
run: npm run test:node
43 changes: 0 additions & 43 deletions .github/workflows/verify-windows.yml

This file was deleted.

0 comments on commit d3e54f6

Please sign in to comment.