Skip to content

Create swift-rocks-watch.md #5470

Create swift-rocks-watch.md

Create swift-rocks-watch.md #5470

Workflow file for this run

name: Verify Windows
on: pull_request
jobs:
verify-windows:
name: Verify 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@v3
- name: Setup Node '16'
uses: actions/setup-node@v3
env:
FORCE_COLOR: 0
with:
node-version: '16'
cache: 'yarn'
- name: Install Playwright dependencies
run: npx playwright install-deps
- name: Install dependencies
run: yarn --frozen-lockfile
- name: Build
run: yarn build
# build for production in CI to make sure tests can run with production build
- name: Build for production
run: yarn build:production
- name: Test
run: yarn test