-
Notifications
You must be signed in to change notification settings - Fork 151
50 lines (42 loc) · 1.29 KB
/
yarn-lock.yaml
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
name: Regen yarn.lock
on:
workflow_dispatch:
inputs:
node-version:
description: Node.js version
required: true
default: '20'
push:
branches:
- release-1.3
concurrency:
group: yarn-lock
cancel-in-progress: true
jobs:
test:
name: Test yarn.lock
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- name: Setup Node.js
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4
with:
node-version: ${{ inputs.node-version }}
cache: 'yarn'
- name: Setup local Turbo cache
uses: dtinth/setup-github-actions-caching-for-turbo@cc723b4600e40a6b8815b65701d8614b91e2669e # v1
- name: Install dependencies
shell: bash
run: |
yarn install
- name: Generate token
id: generate-token
uses: actions/create-github-app-token@31c86eb3b33c9b601a1f60f98dcbfd1d70f379b4 # v1.10.3
with:
app-id: ${{ vars.JANUS_IDP_GITHUB_APP_ID }}
private-key: ${{ secrets.JANUS_IDP_GITHUB_APP_PRIVATE_KEY }}
- name: Regen yarn.lock
uses: ./.github/actions/yarn-lock
env:
GITHUB_TOKEN: ${{ steps.generate-token.outputs.token }}