-
-
Notifications
You must be signed in to change notification settings - Fork 0
52 lines (46 loc) · 1.21 KB
/
pr.yml
File metadata and controls
52 lines (46 loc) · 1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
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