-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- run pnpm lint - run pnpm build closes #1
Showing
3 changed files
with
103 additions
and
1 deletion.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
name: CI for KernelCI Dashboard | ||
|
||
on: | ||
push: | ||
branches: [main] | ||
pull_request: | ||
types: | ||
- opened | ||
- synchronize | ||
- reopened | ||
- ready_for_review | ||
|
||
concurrency: | ||
group: ci-check-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
env: | ||
CI: true | ||
|
||
jobs: | ||
setup-node: | ||
if: github.event.pull_request.draft != true | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 10 | ||
outputs: | ||
paths-node_modules: ${{ steps.paths-node_modules.outputs.paths }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Cache node_modules | ||
uses: actions/cache@v4 | ||
id: cache-node_modules | ||
with: | ||
key: node_modules-${{ runner.os }}-${{ hashFiles('./dashboard/pnpm-lock.yaml') }} | ||
path: ./dashboard/node_modules | ||
|
||
- name: Install pnpm | ||
uses: pnpm/action-setup@v2 | ||
with: | ||
version: 9 | ||
|
||
- name: Installing dependencies with pnpm | ||
if: steps.cache-node_modules.outputs.cache-hit != 'true' | ||
run: pnpm install --frozen-lockfile | ||
working-directory: ./dashboard | ||
|
||
lint-js: | ||
if: github.event.pull_request.draft != true | ||
needs: setup-node | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 5 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Fetch node_modules | ||
uses: actions/cache@v4 | ||
id: fetch-node_modules | ||
with: | ||
key: node_modules-${{ runner.os }}-${{ hashFiles('./dashboard/pnpm-lock.yaml') }} | ||
path: ./dashboard/node_modules | ||
|
||
- name: Install pnpm | ||
uses: pnpm/action-setup@v2 | ||
with: | ||
version: 9 | ||
|
||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version-file: '.nvmrc' | ||
|
||
- name: Run eslint | ||
run: pnpm lint | ||
working-directory: ./dashboard | ||
|
||
build-front: | ||
if: github.event.pull_request.draft != true | ||
needs: setup-node | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 10 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Fetch node_modules | ||
uses: actions/cache@v4 | ||
id: fetch-node_modules | ||
with: | ||
key: node_modules-${{ runner.os }}-${{ hashFiles('./dashboard/pnpm-lock.yaml') }} | ||
path: ./dashboard/node_modules | ||
|
||
- name: Install pnpm | ||
uses: pnpm/action-setup@v2 | ||
with: | ||
version: 9 | ||
|
||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version-file: '.nvmrc' | ||
|
||
- name: Run build | ||
run: pnpm build | ||
working-directory: ./dashboard |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
18 |
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