Skip to content

Commit

Permalink
add minimal example to validate dependabot changes
Browse files Browse the repository at this point in the history
  • Loading branch information
rajbos authored Dec 10, 2023
1 parent 803ba8d commit 112b109
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/minimal-ci.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 112b109

Please sign in to comment.