--- name: ci on: push: branches: - main pull_request: branches: - main jobs: check_integrity: name: Make sure expected pre-release actions are performed runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v1 with: node-version: '12' - run: npm install -g npm - run: npm install - run: npm run format - run: npm install -g markdownlint-cli - run: npm run markdownlint - run: npm run shellcheck - run: npm run yamllint - run: npm run jslint - run: npm run licenses - run: npm run build - name: Check if build left artifacts run: git diff --exit-code