Skip to content

Commit

Permalink
add setup job action
Browse files Browse the repository at this point in the history
  • Loading branch information
riccardoperra committed Sep 14, 2024
1 parent 259ff63 commit b7bed4c
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/actions/setup-job/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: 'Setup CI Step'
description: 'Checkout PR and use same node version for jobs'

runs:
using: 'composite'

steps:
- name: Checkout PR
uses: actions/checkout@v4

- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-job-node@v4
with:
node-version: ${{ matrix.node }}

0 comments on commit b7bed4c

Please sign in to comment.