File tree Expand file tree Collapse file tree 1 file changed +26
-0
lines changed
Expand file tree Collapse file tree 1 file changed +26
-0
lines changed Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments