Skip to content

Commit

Permalink
Fix continuous build
Browse files Browse the repository at this point in the history
  • Loading branch information
rg-wood committed Apr 3, 2024
1 parent e7c93fa commit 7a00e00
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 14 deletions.
17 changes: 5 additions & 12 deletions .github/workflows/lint-and-test.yml
Original file line number Diff line number Diff line change
@@ -1,25 +1,18 @@
name: Lint and test
name: Lint

on: [push, pull_request]

jobs:
build_and_test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
nodejs: [12, 14]

steps:
- uses: actions/checkout@v2

# https://github.com/actions/setup-node
- uses: actions/setup-node@v2-beta
with:
node-version: ${{ matrix.nodejs }}
node-version: 20

- run: yarn install
- run: yarn add -D esbuild
- run: yarn test
- run: yarn lint
- run: yarn build-all
- run: npm ci
- run: npm rum lint
- run: npm run build
4 changes: 2 additions & 2 deletions .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Playwright Tests
name: Test
on:
push:
branches: [ main, master ]
Expand All @@ -17,7 +17,7 @@ jobs:
run: npm ci
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- name: Run Playwright tests
- name: Run tests
run: npx playwright test
- uses: actions/upload-artifact@v4
if: always()
Expand Down

0 comments on commit 7a00e00

Please sign in to comment.