-
-
Notifications
You must be signed in to change notification settings - Fork 13
44 lines (36 loc) · 1 KB
/
packages.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
name: Fetch Latest packages
on:
schedule:
- cron: "0 0 * * *"
jobs:
npm-packages:
runs-on: ubuntu-latest
defaults:
run:
shell: bash
working-directory: automation-scripts/npm-packages
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: "18.16.1"
- name: Install Yarn
run: |
corepack enable
corepack prepare yarn@stable --activate
- name: Install dependencies
run: yarn install --immutable
- name: Run
run: yarn start
- name: Move packages.json
run: |-
git add packages.json
git mv -f packages.json ../../api/packages.json
- name: Commit and push if changed
run: |-
git config --global user.email "[email protected]"
git config --global user.name "GitHub Actions"
git commit -m "Update packages.json" || true
git push