Skip to content

Commit

Permalink
update CI
Browse files Browse the repository at this point in the history
  • Loading branch information
silesky committed Sep 8, 2023
1 parent da80707 commit 3fe402e
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 4 deletions.
1 change: 0 additions & 1 deletion .buildkite/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,6 @@ steps:
- echo "--- Install dependencies"
- PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD=1 HUSKY=0 yarn install --immutable
- echo "--- Install browsers"
- npx playwright install --with-deps chromium
- echo "+++ Run Browser integration tests :pray:"
- yarn turbo run --filter='consent-tools-integration-tests' test:intg
plugins:
Expand Down
19 changes: 16 additions & 3 deletions .github/workflows/node-ci.yml → .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
name: Node CI
name: CI
on:
push:
env:
HUSKY: 0
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: 1
jobs:
test:
name: "Test (Node.js v${{ matrix.node-version }})"
node:
name: "Test Node (Node.js v${{ matrix.node-version }})"
runs-on: ubuntu-latest
strategy:
matrix:
Expand All @@ -20,5 +20,18 @@ jobs:
- run: yarn install --immutable
- run: yarn turbo run --filter='./packages/node*' lint
- run: yarn turbo run --filter='./packages/node*' test
consent:
name: Test Consent
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
cache: "yarn"
- run: yarn install --immutable
- run: npx playwright install --with-deps chromium
- run: yarn turbo run --filter='consent-tools-integration-tests' test:intg



0 comments on commit 3fe402e

Please sign in to comment.