Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
bf6971e1af | ||
|
|
3bc559e467 | ||
|
|
1660ce4e02 | ||
|
|
0d2de95d88 | ||
| 9941d2fc6b | |||
| b00b7468a1 |
10
.github/workflows/build-lint-test.yaml
vendored
10
.github/workflows/build-lint-test.yaml
vendored
@@ -22,7 +22,7 @@ jobs:
|
||||
|
||||
steps:
|
||||
- name: 📥 Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
uses: actions/checkout@v5
|
||||
|
||||
- name: 🔧 Setup Node.js
|
||||
uses: actions/setup-node@v4
|
||||
@@ -44,6 +44,14 @@ jobs:
|
||||
restore-keys: |
|
||||
${{ runner.os }}-yarn-
|
||||
|
||||
- name: 🗂️ Cache .cache folders
|
||||
uses: actions/cache@v4
|
||||
with:
|
||||
path: packages/**/.cache
|
||||
key: ${{ runner.os }}-cache
|
||||
restore-keys: |
|
||||
${{ runner.os }}-cache-
|
||||
|
||||
- name: 📥 Install Dependencies
|
||||
run: yarn install --immutable
|
||||
|
||||
|
||||
2
.github/workflows/codeql.yaml
vendored
2
.github/workflows/codeql.yaml
vendored
@@ -24,7 +24,7 @@ jobs:
|
||||
|
||||
steps:
|
||||
- name: ⤵️ Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
uses: actions/checkout@v5
|
||||
|
||||
- name: 🏗 Initialize CodeQL
|
||||
uses: github/codeql-action/init@v3
|
||||
|
||||
2
.github/workflows/dependency-review.yaml
vendored
2
.github/workflows/dependency-review.yaml
vendored
@@ -27,7 +27,7 @@ jobs:
|
||||
|
||||
steps:
|
||||
- name: ⤵️ Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
uses: actions/checkout@v5
|
||||
|
||||
- name: 🚀 Dependency Review
|
||||
uses: actions/dependency-review-action@v4
|
||||
|
||||
2
.github/workflows/publish-npm.yaml
vendored
2
.github/workflows/publish-npm.yaml
vendored
@@ -34,7 +34,7 @@ jobs:
|
||||
|
||||
steps:
|
||||
- name: 📥 Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
uses: actions/checkout@v5
|
||||
|
||||
- name: 🔧 Setup Node.js
|
||||
uses: actions/setup-node@v4
|
||||
|
||||
9
.github/workflows/release.yaml
vendored
9
.github/workflows/release.yaml
vendored
@@ -15,6 +15,9 @@ on:
|
||||
default: 'lts/*'
|
||||
type: string
|
||||
secrets:
|
||||
RELEASER_ACCOUNT_TOKEN:
|
||||
required: true
|
||||
description: 'GitHub token for the releaser account'
|
||||
GPG_KEY_ID:
|
||||
required: true
|
||||
description: 'GPG key ID'
|
||||
@@ -29,10 +32,10 @@ jobs:
|
||||
|
||||
steps:
|
||||
- name: ⤵️ Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
uses: actions/checkout@v5
|
||||
with:
|
||||
fetch-depth: 0
|
||||
token: ${{ secrets.GITHUB_TOKEN }}
|
||||
token: ${{ secrets.RELEASER_ACCOUNT_TOKEN }}
|
||||
|
||||
- name: 🙂↔️ Import GPG key
|
||||
run: |
|
||||
@@ -92,5 +95,5 @@ jobs:
|
||||
- name: 🤖 Get Release
|
||||
run: yarn lerna version --yes
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
GITHUB_TOKEN: ${{ secrets.RELEASER_ACCOUNT_TOKEN }}
|
||||
WIREIT_LOGGER: metrics
|
||||
|
||||
2
.github/workflows/sync-label.yaml
vendored
2
.github/workflows/sync-label.yaml
vendored
@@ -16,7 +16,7 @@ jobs:
|
||||
|
||||
steps:
|
||||
- name: ⤵️ Check out code from GitHub
|
||||
uses: actions/checkout@v4
|
||||
uses: actions/checkout@v5
|
||||
|
||||
- name: 🚀 Run Label Syncer
|
||||
uses: micnncim/action-label-syncer@v1
|
||||
|
||||
Reference in New Issue
Block a user