Skip to content

Commit

Permalink
Create pr-verify.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
pgourlain authored May 10, 2024
1 parent 5ddd121 commit d4cd6dd
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/pr-verify.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: pr-verify

on: [push, pull_request]

jobs:
pr-verify-job:
name: Node ${{ matrix.node }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
timeout-minutes: 10
strategy:
fail-fast: true
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
node:
- 20
steps:
- name: Checkout Source
uses: actions/checkout@v2
- name: Install Node ${{ matrix.node }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}

0 comments on commit d4cd6dd

Please sign in to comment.