Beta #4
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: Test | ||
on: [pull_request] | ||
jobs: | ||
commitlint: | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Fetch codebase | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
- name: Setup node | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: "20.x" | ||
- name: Install dependencies | ||
run: npm i -D @semantic-release/git @semantic-release/changelog @commitlint/{cli,config-conventional} commitlint | ||
- name: Validate PR commits with commitlint | ||
run: npx commitlint --from ${{ github.event.pull_request.head.sha }}~${{ github.event.pull_request.commits - 1 }} --to ${{ github.event.pull_request.head.sha }} --verbose | ||
Check failure on line 20 in .github/workflows/test.yml GitHub Actions / TestInvalid workflow file
|
||
test: | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Fetch codebase | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
# TODO: Run Go tests | ||
# - name: Test | ||
# run: |