diff --git a/.github/workflows/integration.yaml b/.github/workflows/integration.yaml new file mode 100644 index 000000000..d7468d2ff --- /dev/null +++ b/.github/workflows/integration.yaml @@ -0,0 +1,67 @@ +name: Linting and Scanning + +on: + push: + branches: + - "**" + tags-ignore: + - v* + +jobs: + setup: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Set up Node.js + uses: actions/setup-node@v4 + with: + node-version-file: '.nvmrc' + + lint: + runs-on: ubuntu-latest + needs: setup + + steps: + - name: Install dependencies + run: | + yarn + + - name: Run lint + run: | + yarn lint + + tests: + runs-on: ubuntu-latest + needs: setup + steps: + - name: Install dependencies + run: yarn + - name: Run tests + run: yarn test + + codeql: + runs-on: ubuntu-latest + permissions: + actions: read + contents: read + security-events: write + + strategy: + fail-fast: false + matrix: + language: [ 'javascript' ] + + steps: + - name: Initialize CodeQL + uses: github/codeql-action/init@v2 + with: + languages: ${{ matrix.language }} + + - name: Autobuild + uses: github/codeql-action/autobuild@v2 + + - name: Perform CodeQL Analysis + uses: github/codeql-action/analyze@v2