forked from expo/expo
-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (38 loc) · 1.3 KB
/
Copy pathvalidate-npm-owners.yml
File metadata and controls
40 lines (38 loc) · 1.3 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
name: Validate owners of packages on npm
on:
workflow_dispatch: {}
schedule:
- cron: '0 8 * * *' # 8:00 AM UTC time every day
jobs:
validate-npm-owners:
if: github.repository == 'expo/expo'
runs-on: ubuntu-24.04
steps:
- name: 👀 Checkout
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
- name: ➕ Add `bin` to GITHUB_PATH
run: echo "$(pwd)/bin" >> $GITHUB_PATH
- name: 🔨 Install pnpm
uses: pnpm/action-setup@0e279bb959325dab635dd2c09392533439d90093 # v6
with:
version: 10
- name: 🔨 Setup Node
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6
with:
node-version: 22
cache: 'pnpm'
- name: 📦 Install dependencies
run: pnpm install --ignore-scripts --frozen-lockfile
- name: ♻️ Restore caches
uses: ./.github/actions/expo-caches
id: expo-caches
- name: 🔎 Validate
run: pnpm expotools validate-npm-owners
env:
NPM_TOKEN_READ_ONLY: ${{ secrets.NPM_TOKEN_READ_ONLY }}
- name: 🔔 Notify on Slack
uses: ./.github/actions/slack-notify
if: failure()
with:
webhook: ${{ secrets.slack_webhook_api }}
author_name: Validate npm owners