-
Notifications
You must be signed in to change notification settings - Fork 1.6k
59 lines (55 loc) · 1.85 KB
/
content-checks-development.yml
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
53
54
55
56
57
58
59
name: Content Checks (Development)
on:
# Use pull_request for development, pull_request_target for forks
pull_request:
types:
- opened
- synchronize
- ready_for_review
- reopened
push:
branches:
- main
- staging
workflow_dispatch: # Allows you to run this workflow manually from the Actions tab
concurrency:
group: content-checks-development-${{ github.event_name }}-${{ github.event.pull_request.number }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
jobs:
quality:
name: Quality Checks
runs-on: ubuntu-latest
timeout-minutes: 10
permissions:
contents: read
pull-requests: write
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 16.15.0
- name: Install Node.js dependencies
shell: bash
run: npm ci
- name: Print workflow information
run: |
echo "Event name: ${{ github.event_name }}"
echo "Pull request number: ${{ github.event.pull_request.number }}"
echo "Pull request user login: ${{ github.event.pull_request.user.login }}"
echo "Base ref: ${{ github.event.pull_request.base.ref }}"
echo "Head sha: ${{ github.event.pull_request.head.sha }}"
git status
git remote -v
git log --oneline -n 10
- name: Run quality checks
uses: ./.github/actions/quality-checks
with:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
BASE_BRANCH: origin/${{ github.event.pull_request.base.ref }}
COMMIT_HASH: ${{ github.event.pull_request.head.sha }}
EVENT_NAME: ${{ github.event_name }}
PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }}