You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .circleci/config.yml
+27-10Lines changed: 27 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -7,9 +7,20 @@ aliases:
7
7
- master
8
8
- develop
9
9
- /^hotfix\//
10
-
- &node-version 16.18.1 # Consider switching to lts when scratch-audio supports that version
10
+
11
+
executors:
12
+
default-executor:
13
+
docker:
14
+
- image: cimg/node:16.18.1 # Consider switching to LTS when scratch-audio supports that version
15
+
working_directory: ~/project
16
+
resource_class: medium
11
17
12
18
commands:
19
+
test:
20
+
steps:
21
+
- run:
22
+
name: Test
23
+
command: npm run test
13
24
setup_deploy:
14
25
steps:
15
26
- run:
@@ -42,33 +53,39 @@ commands:
42
53
if npm info | grep -q $RELEASE_VERSION; then git tag $RELEASE_VERSION && git push https://${GH_TOKEN}@github.com/${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}.git $RELEASE_VERSION; fi
0 commit comments