Skip to content

Beta

Beta #4

Workflow file for this run

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

View workflow run for this annotation

GitHub Actions / Test

Invalid workflow file

The workflow is not valid. .github/workflows/test.yml (Line: 20, Col: 14): Unexpected symbol: '-'. Located at position 35 within expression: github.event.pull_request.commits - 1
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: