Skip to content

Commit

Permalink
Merge branch 'master' of github.com:gdman/sf-metadata into feature/fi…
Browse files Browse the repository at this point in the history
…leDelete
  • Loading branch information
gdman committed Apr 25, 2021
2 parents b3524cf + 558fd1b commit 52b6735
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 1 deletion.
11 changes: 11 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,15 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run build
- run: npm test
- name: Archive JS build
uses: actions/upload-artifact@v2
with:
name: build
path: lib
- name: Archive code coverage results
uses: actions/upload-artifact@v2
with:
name: code-coverage-report
path: coverage
10 changes: 10 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,16 @@ jobs:
npm ci
npm test
npm pack
- name: Archive JS build
uses: actions/upload-artifact@v2
with:
name: build
path: lib
- name: Archive code coverage results
uses: actions/upload-artifact@v2
with:
name: code-coverage-report
path: coverage
- name: Create Release
uses: actions/create-release@v1
id: create_release
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"scripts": {
"build": "rm -rf ./lib && tsc",
"test": "jest --coverage",
"prepack": "npm run build && npm test"
"prepack": "npm run build"
},
"author": "Andrew Goodman",
"license": "MIT",
Expand Down

0 comments on commit 52b6735

Please sign in to comment.