- move pr collection into npm module

(publish without any furhter notes or docs)
- refactor action to use npm dependency
This commit is contained in:
Mike Penz
2023-06-03 11:22:52 +00:00
committed by GitHub
parent 4a9ea3cd6a
commit e7dc26611c
28 changed files with 3529 additions and 1808 deletions
+11 -1
View File
@@ -33,10 +33,20 @@ jobs:
node-version: 16.x
- name: Install dependencies
run: npm ci
run: |
cd pr-collector
npm ci
cd ..
npm ci
- name: Rebuild the dist/ directory
run: |
cd pr-collector
npm run build
npm run package
cd ..
npm run build
npm run package
+4
View File
@@ -28,6 +28,10 @@ jobs:
- name: Run NPM
run: |
cd pr-collector
npm run all
cd ..
npm run all
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}