generated from onebeyond/open-source-project-template
-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (33 loc) · 1.02 KB
/
pr_health_check.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
name: Check changes 🍿
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions: # added using https://github.com/step-security/secure-workflows
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: 🔐 Harden Runner
uses: step-security/harden-runner@03bee3930647ebbf994244c21ddbc0d4933aab4f # v2.3.0
with:
disable-sudo: true
egress-policy: audit
- name: ⚙️ Git Checkout
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
- name: ⚙️ Install Node versions
uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3.6.0
with:
node-version: 18.x
- name: ⚙️ Install dependencies
run: npm ci
- name: 👀 Lint files
run: npm run lint
- name: 🧪 Run tests
run: npm run test:coverage
- name: 📝 Generate sample newsletter
run: npm run start
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}