Dockcross 20240418 88c04a4 #1238
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: PR Checks | |
on: pull_request | |
jobs: | |
pr-checks: | |
runs-on: ubuntu-22.04 | |
name: Check and lint PR | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Setup node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '18' | |
- run: | | |
npm i -g pnpm | |
pnpm i | |
- name: Lint commits | |
run: npx commitlint --from=${{ github.event.pull_request.base.sha }} |