chore: update dependencies #112
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
# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages | |
name: CI | |
on: | |
release: | |
types: [created] | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
cache: 'yarn' | |
- run: yarn install | |
- run: yarn lint | |
- name: test | |
run: yarn test | |
continue-on-error: true | |
- run: yarn build | |
# - uses: romeovs/[email protected] | |
# if: github.event_name == 'pull_request' | |
# with: | |
# github-token: ${{ secrets.GITHUB_TOKEN }} | |
# lcov-file: ./coverage/lcov.info | |
- uses: codecov/codecov-action@v1 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos | |
#files: ./coverage1.xml,./coverage2.xml # optional | |
flags: unittests # optional | |
name: codecov-umbrella # optional | |
fail_ci_if_error: true # optional (default = false) | |
verbose: true # optional (default = false) | |
publish-npm: | |
if: github.ref == 'refs/heads/main' | |
needs: | |
- build | |
env: | |
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
cache: 'yarn' | |
node-version: 16 | |
registry-url: https://registry.npmjs.org/ | |
- run: | | |
yarn install | |
yarn doc-gen | |
env: | |
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} | |
- name: Publish NPM | |
run: | | |
git config --global user.email "[email protected]" | |
git config --global user.name "Coingecko API CI" | |
yarn release | |
git push --follow-tags origin main && npm run build && npm publish | |
- uses: JamesIves/[email protected] | |
with: | |
branch: gh-pages # The branch the action should deploy to. | |
folder: docs # The folder the action should deploy. | |
# publish-gpr: | |
# needs: build | |
# runs-on: ubuntu-latest | |
# steps: | |
# - uses: actions/checkout@v2 | |
# - uses: actions/setup-node@v2 | |
# with: | |
# node-version: 14 | |
# registry-url: https://npm.pkg.github.com/ | |
# - run: yarn install | |
# - run: yarn publish | |
# env: | |
# NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}} |