forked from shadowwalker/next-pwa
-
Notifications
You must be signed in to change notification settings - Fork 27
38 lines (38 loc) · 1.22 KB
/
pull-request-checks.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
name: Check a pull request
on:
pull_request:
types: [opened, synchronize]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_TEAM: ${{ secrets.TURBO_TEAM }}
TURBO_REMOTE_ONLY: true
jobs:
ensure_changelog_exists:
name: 🔎 Ensure that .changeset is not empty
runs-on: [ubuntu-latest]
strategy:
matrix:
node-version: ["18.x"]
pnpm-version: ["8.x"]
if: ${{ !contains(github.event.pull_request.title, 'Publish packages') }}
steps:
- name: Checkout repo
uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0
- name: Use Node ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install changeset CLI
run: npm i -g @changesets/cli@$(node -p "require('./package.json').devDependencies['@changesets/cli']")
- name: Ensure that a changelog is added
run: npx changeset status --since=origin/master
test:
name: ⬣, 🔎, 🔨 Test PR
uses: ./.github/workflows/build-and-test.yml
secrets: inherit