chore(deps): update dependency @types/source-map-support to v0.5.9 #121
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: Integration Suite | |
on: ['push'] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }} | |
jobs: | |
integrate: | |
name: Integration | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: "16" | |
cache: 'npm' | |
- name: Installing Dependencies | |
run: npm ci | |
- name: Compiling Code | |
run: npm run build | |
- name: Running Tests | |
run: npm run cover | |
- name: Linting Code | |
run: npm run lint | |
- name: Checking for Duplication | |
run: npm run duplication | |
- name: Semantic Release | |
if: github.ref == 'refs/heads/master' | |
run: npm run semantic-release | |
env: | |
GITHUB_TOKEN: ${{ secrets.SEMANTIC_RELEASE_GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ secrets.SEMANTIC_RELEASE_NPM_TOKEN }} |