From 01b9265702becc9b19727a64e9dc70d544454bf8 Mon Sep 17 00:00:00 2001 From: alesun Date: Wed, 21 Feb 2024 17:37:14 +0100 Subject: [PATCH] chore(deps): update dependabot config --- .github/dependabot.yml | 19 +++++++++++++++++++ .github/workflows/test.yml | 14 ++++++++++++++ 2 files changed, 33 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 9deba28c53..e5f3bcd94b 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -33,3 +33,22 @@ updates: patterns: - "semantic-release" - "@semantic-release/*" + # Maintain dependencies for GitHub Actions + - package-ecosystem: "github-actions" + directory: "/" + versioning-strategy: increase + open-pull-requests-limit: 10 + schedule: + interval: "daily" + reviewers: + - "@exadel-inc/esl-core-maintainers" + assignees: + - "ala-n" + - "abarmina" + - "NastaLeo" + groups: + gh-pages: + patterns: + - "actions/configure-pages" + - "actions/upload-pages-artifact" + - "actions/deploy-pages" diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000000..792a4c5650 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,14 @@ +name: Test + +on: workflow_dispatch + +jobs: + test: + runs-on: ubuntu-latest + steps: + - name: Get repository code + uses: actions/checkout@v3 + - name: Install NPM Dependencies + run: npm ci + - name: Run tests + run: npm run test