Skip to content

Commit d6ebf93

Browse files
committed
Add CircleCI config
1 parent f330fd1 commit d6ebf93

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.circleci/config.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Use the latest 2.1 version of CircleCI pipeline process engine.
2+
# See: https://circleci.com/docs/configuration-reference
3+
version: 2.1
4+
5+
orbs:
6+
node: circleci/node@7.1.0
7+
browser-tools: circleci/browser-tools@1.5.3
8+
9+
jobs:
10+
test:
11+
docker:
12+
- image: cimg/node:20.4.0-browsers
13+
steps:
14+
- checkout
15+
- browser-tools/install-browser-tools
16+
- node/install-packages
17+
- run:
18+
command: npm run test
19+
20+
# Orchestrate jobs using workflows
21+
# See: https://circleci.com/docs/workflows/ & https://circleci.com/docs/configuration-reference/#workflows
22+
workflows:
23+
test: # This is the name of the workflow, feel free to change it to better match your workflow.
24+
# Inside the workflow, you define the jobs you want to run.
25+
jobs:
26+
- test

0 commit comments

Comments
 (0)