wd-144: edit ci steps #95
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Continuous Integration Pull Request | ||
on: | ||
pull_request: | ||
types: | ||
- assigned | ||
- unassigned | ||
- opened | ||
- edited | ||
- synchronize | ||
- reopened | ||
- labeled | ||
- unlabeled | ||
- ready_for_review | ||
concurrency: | ||
group: ci-pr-${{ github.ref }} | ||
cancel-in-progress: true | ||
jobs: | ||
dependencies: | ||
name: Install Dependencies | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Code Checkout | ||
uses: actions/checkout@v4 | ||
- name: Install NodeJS | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version-file: .nvmrc | ||
- name: Cache Dependencies | ||
id: cache | ||
uses: actions/cache@v3 | ||
with: | ||
path: '**/node_modules' | ||
key: ci-pr-${{ hashFiles('**/package-lock.json') }} | ||
restore-keys: | | ||
ci-pr | ||
- name: Install Dependencies | ||
if: steps.cache.outputs.cache-hit != 'true' | ||
run: | | ||
npm install | ||
ci-pr: | ||
name: Continuous Integration Pull Request | ||
needs: dependencies | ||
permissions: | ||
Check failure on line 50 in .github/workflows/ci-pr.yml GitHub Actions / Continuous Integration Pull RequestInvalid workflow file
|
||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Source Code | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- name: Install NodeJS | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version-file: .nvmrc | ||
- name: Restore Dependencies | ||
uses: actions/cache@v3 | ||
with: | ||
path: '**/node_modules' | ||
key: ci-pr-${{ hashFiles('**/package-lock.json') }} | ||
- name: Lint Commits | ||
run: | | ||
npx commitlint --from ${{ github.event.pull_request.base.sha }} --to ${{ github.event.pull_request.head.sha }} --verbose | ||
labeler: | ||
name: Labeler | ||
needs: ci-pr | ||
permissions: | ||
contents: read | ||
pull-requests: write | ||
steps: | ||
- name: Add Environment Label | ||
uses: ffittschen/pr-branch-labeler@v1 | ||
with: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} |