From 112b109f488889ee6bf47f515da97a0f5c92719f Mon Sep 17 00:00:00 2001 From: Rob Bos Date: Sun, 10 Dec 2023 10:38:49 +0000 Subject: [PATCH] add minimal example to validate dependabot changes --- .github/workflows/minimal-ci.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/minimal-ci.yml diff --git a/.github/workflows/minimal-ci.yml b/.github/workflows/minimal-ci.yml new file mode 100644 index 0000000..dc56f83 --- /dev/null +++ b/.github/workflows/minimal-ci.yml @@ -0,0 +1,18 @@ +on: + push: + + pull_request: + branches: + - main + +jobs: + minimal-ci-check: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-node@v3 + with: + node-version: '20' + + - run: npm ci + - run: npm run test \ No newline at end of file