Cleanup GitHub Actions #8558
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: Pull Request | |
on: | |
pull_request: | |
concurrency: | |
group: ${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
packages: | |
name: Packages | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: PreCache | |
run: npm version 0.0.0 --no-git-tag-version | |
- name: Cache dependencies | |
id: cache | |
uses: actions/cache@v4 | |
with: | |
path: | | |
./node_modules | |
/home/runner/.cache/Cypress | |
key: modules-${{ hashFiles('package-lock.json') }} | |
- name: Install dependencies | |
if: steps.cache.outputs.cache-hit != 'true' | |
run: npm ci | |
checks: | |
name: ESLint - Prettier - TSC | |
runs-on: ubuntu-latest | |
needs: packages | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: PreCache | |
run: npm version 0.0.0 --no-git-tag-version | |
- name: Cache dependencies | |
id: cache | |
uses: actions/cache@v4 | |
with: | |
path: | | |
./node_modules | |
/home/runner/.cache/Cypress | |
key: modules-${{ hashFiles('package-lock.json') }} | |
- name: Install dependencies | |
if: steps.cache.outputs.cache-hit != 'true' | |
run: npm ci | |
- run: npm run checks | |
component: | |
name: Component | |
needs: packages | |
uses: ./.github/workflows/component.yml | |
success: | |
name: Success | |
runs-on: ubuntu-latest | |
if: ${{ success() }} | |
needs: | |
- checks | |
- component | |
steps: | |
- run: echo Success |