We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c1d336 commit e9001eeCopy full SHA for e9001ee
.circleci/config.yml
@@ -1,16 +1,23 @@
1
-version: 2
2
-jobs:
3
- build:
+version: 2.1
+
+executors:
4
+ node:
5
docker:
- - image: circleci/node:12.14.1
6
- working_directory: ~/workspace
+ - image: cimg/node:20.15.1
7
8
+jobs:
9
+ test:
10
+ executor: node
11
steps:
12
- checkout
-
13
- run:
14
name: Install latest bundlewatch
15
command: yarn add bundlewatch
16
17
name: Run bundlewatch check
18
command: yarn bundlewatch --config config.bundlewatch.js
19
20
+workflows:
21
+ e2e:
22
+ jobs:
23
+ - test
0 commit comments