Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 42 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
version: 2.1
orbs:
node: circleci/node@5
jobs:
test-node:
executor: node/default
steps:
- checkout
- node/install-packages:
pkg-manager: npm
- run:
name: Run tests
command: npm test --passWithNoTests
deploy:
docker:
- image: cimg/base:stable
steps:
- run:
name: deploy
command: '#e.g. ./deploy.sh'
- run:
name: found github actions config
command: ':'
e2e-tests:
docker:
- image: mcr.microsoft.com/playwright:v1.35.0-focal
steps:
- checkout
- run:
name: Install dependencies
command: npm ci
- run:
name: Run Playwright E2E Tests
command: npx playwright test
workflows:
build-and-test:
jobs:
- test-node
- e2e-tests
# - deploy:
# requires:
# - test-node
Loading