fix(load): auto stringify json when creating corpus from json #58
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
with: | |
persist-credentials: false | |
- name: Setup node | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 14 | |
- name: Replace ssh with https # see: https://github.com/actions/setup-node/issues/214#issuecomment-810829250 | |
run: > | |
git config --global url."https://github.com/".insteadOf | |
ssh://[email protected]/ | |
- name: Install, test, and build | |
run: | | |
npm ci | |
npm test | |
npm run-script build | |
# - name: Archive code coverage results | |
# uses: actions/upload-artifact@v2 | |
# with: | |
# name: code-coverage-report | |
# path: coverage | |
# - name: Archive distribution file | |
# uses: actions/upload-artifact@v2 | |
# with: | |
# name: distribution | |
# path: dist/voyantjs.js | |
- name: Upload coverage report | |
uses: codecov/codecov-action@v2 | |
with: | |
directory: coverage | |
name: codecov-umbrella | |
#fail_ci_if_error: true # optional (default = false) | |
verbose: true # optional (default = false) | |
- name: Semantic release | |
env: | |
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} | |
NPM_TOKEN: ${{secrets.NPM_TOKEN}} | |
run: npm run-script semantic-release |