Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(#1): add workflow
Browse files Browse the repository at this point in the history
- run pnpm lint
- run pnpm build

closes #1
mari1912 committed Jun 21, 2024
1 parent 651caec commit 999713b
Showing 3 changed files with 103 additions and 1 deletion.
101 changes: 101 additions & 0 deletions .github/workflows/ci.yaml
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
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
18
2 changes: 1 addition & 1 deletion dashboard/package.json
Original file line number Diff line number Diff line change
@@ -6,7 +6,7 @@
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"lint": "eslint **/*.tsx **/*.ts --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview"
},
"dependencies": {

0 comments on commit 999713b

Please sign in to comment.