Code to speed up report generation to avoid timeouts #713
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: CI_AutoMerge_Dependabot | |
on: | |
pull_request: | |
paths-ignore: # https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#filter-pattern-cheat-sheet | |
- '**/README.md' | |
- '**/dependabot.yml' | |
- 'docs/*' | |
- '.vscode/*' | |
branches: | |
- develop | |
- main | |
jobs: | |
build-test-node: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 'Install libxml2-utils' | |
run: | | |
sudo apt-get update && \ | |
sudo apt-get install libxml2-utils | |
- name: 'Checkout GitHub Action' | |
uses: actions/checkout@v3 | |
- name: 'Setup Node Environment' | |
uses: actions/setup-node@v3.8.1 | |
with: | |
node-version-file: '.nvmrc' | |
cache: 'npm' | |
- name: 'Install Dependencies with Npm' | |
run: | | |
npm i -g npm@8.19.4 | |
npm ci | |
- name: 'Run unit tests' | |
run: npm run rules:test | |
build-docker: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 'Checkout GitHub Action' | |
uses: actions/checkout@v3 | |
- name: 'Build Docker Image' | |
run: | | |
docker build . -t validator-local:latest | |
automerge: | |
needs: [build-test-node, build-docker] | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: write | |
contents: write | |
steps: | |
- uses: fastify/github-action-merge-dependabot@v3.9.1 | |
with: | |
github-token: ${{secrets.GITHUB_TOKEN}} |