Skip to content

Commit

Permalink
Setup test for watch mode on Github Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
fatso83 committed Oct 5, 2023
1 parent b3c1e06 commit 4ab207c
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,23 @@ permissions:
contents: read

jobs:
check-tests-are-watchable:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "lts/*"
cache: npm
- name: Install dependencies
run: |
npm ci
env:
PUPPETEER_SKIP_CHROMIUM_DOWNLOAD: 1
- name: Tests that tests are watchable
run: |
./scripts/test-watch-mode-works.sh
prettier:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 4ab207c

Please sign in to comment.