-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
34 lines (28 loc) · 757 Bytes
/
ci-bundle.yml
File metadata and controls
34 lines (28 loc) · 757 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
---
name: CI-Bundle
permissions: {}
on:
workflow_call:
secrets:
CODECOV_TOKEN:
required: false
jobs:
bundle_analysis:
permissions:
contents: read
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Setup node
id: node
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
- name: Install npm dependencies
run: npm install --ignore-scripts
- name: Debug install
if: always()
run: cat "${HOME}/.npm/_logs/*-debug-0.log" || true
- name: Build
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
run: npm run build