Skip to content

feat: add an empty test.txt file #2

feat: add an empty test.txt file

feat: add an empty test.txt file #2

Workflow file for this run

name: PR Checks
on:
pull_request:
types: [ opened, synchronize, edited, reopened ]
branches: [ master ]
jobs:
checks:
name: PR Checks
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup proto and moon toolchains
uses: moonrepo/setup-toolchain@v0
with:
auto-install: true
- name: Validate PR title
run: cog verify "${{ github.event.pull_request.title }}"
- name: Run moon CI tasks
run: moon ci
- name: Generate CI run reports
uses: moonrepo/run-report-action@v1
with:
access-token: ${{ secrets.GITHUB_TOKEN }}