Skip to content

update extends format #99

update extends format

update extends format #99

Workflow file for this run

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: Linting Code
run: npm run lint
- name: Checking for Duplication
run: npm run duplication -- --limit=1
- 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 }}