Upgrade changelog-bot and release-notes-bot actions #45
Workflow file for this run
This file contains hidden or 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 | |
| on: pull_request | |
| concurrency: | |
| group: pr-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| packages: read | |
| jobs: | |
| superlinter: | |
| name: Lint bash, docker, markdown, and yaml | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6.0.2 | |
| - name: Lint codebase | |
| uses: docker://github/super-linter:v3.8.3 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| VALIDATE_ALL_CODEBASE: true | |
| VALIDATE_BASH: true | |
| VALIDATE_DOCKERFILE: true | |
| VALIDATE_MD: true | |
| VALIDATE_YAML: true | |
| verify-changelog: | |
| name: Verify CHANGELOG is valid | |
| runs-on: ubuntu-latest | |
| container: | |
| image: ghcr.io/ponylang/changelog-tool:release | |
| steps: | |
| - uses: actions/checkout@v6.0.2 | |
| - name: Verify CHANGELOG | |
| run: changelog-tool verify | |
| ubuntu-24_04: | |
| name: Ubuntu 24.04 | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout source | |
| uses: actions/checkout@v6.0.2 | |
| - name: Install Node.js | |
| uses: actions/setup-node@v6.2.0 | |
| with: | |
| node-version: '22.x' | |
| cache: 'npm' | |
| - name: Build | |
| run: make config=debug | |
| - name: Test | |
| run: xvfb-run -a make test |