We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aec4ff2 commit 92fbb88Copy full SHA for 92fbb88
.circleci/config.yml
@@ -0,0 +1,29 @@
1
+version: 2.1
2
+
3
+orbs:
4
+ node: circleci/[email protected]
5
6
+executors:
7
+ default-executor:
8
+ docker:
9
+ - image: "cimg/node:16.20.0-browsers"
10
+ auth:
11
+ username: $DOCKERHUB_USERNAME
12
+ password: $DOCKERHUB_PASSWORD
13
14
+commands:
15
+ setup:
16
+ steps:
17
+ - checkout
18
+ - node/install-packages
19
20
+workflows:
21
+ build-test:
22
+ jobs:
23
+ - build_test
24
25
+jobs:
26
+ build_test:
27
+ executor: default-executor
28
29
+ - setup
0 commit comments