Skip to content

Commit

Permalink
add linter on pull request
Browse files Browse the repository at this point in the history
  • Loading branch information
iimpulse committed Sep 18, 2024
1 parent cbcf48e commit 148a54c
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/hpo-web-development.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# This is a basic workflow to help you get started with Actions

name: HPO-WEB Static Deployment

# Controls when the workflow will run
on: pull_request

jobs:
load:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Configure Node
uses: actions/setup-node@v3
with:
node-version: 16.10.0
cache: 'npm'

- name: Lint, Test, Build
run: |
npm install
npm run lint
npm run testci

0 comments on commit 148a54c

Please sign in to comment.