Skip to content

Commit d2c7927

Browse files
authored
Rollup and rollup-terser bump dependency version (microsoftgraph#1129)
* rollup and terser update * Update ci_validation.yml * terser 0.3.0 * recreate lock json
1 parent c935d0a commit d2c7927

File tree

4 files changed

+6220
-4542
lines changed

4 files changed

+6220
-4542
lines changed

.github/workflows/ci_validation.yml

+13-3
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,16 @@ jobs:
1919
uses: actions/setup-node@v3
2020
with:
2121
node-version: ${{ matrix.node-version }}
22-
- run: npm ci
23-
- run: npm run build --if-present
24-
- run: npm test
22+
- name: Install dependencies
23+
run: npm ci
24+
25+
- name: Build for node 14 and 16
26+
if: matrix.node-version != '12.x'
27+
run: npm run build --if-present
28+
29+
- name: Build for node 12
30+
if: matrix.node-version == '12.x'
31+
run: npm run build:cjs && npm run build:es
32+
33+
- name: Run unit tests
34+
run: npm test

0 commit comments

Comments
 (0)