Skip to content

Commit

Permalink
chore: add lint job
Browse files Browse the repository at this point in the history
Signed-off-by: Sebastian Davids <[email protected]>
  • Loading branch information
sdavids committed Oct 27, 2023
1 parent fd060ee commit 573d62e
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion .github/workflows/deploy-now.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
workflow_dispatch:
permissions: {}
jobs:
deploy-now:
lint:
runs-on: ubuntu-22.04
permissions:
contents: read
Expand All @@ -31,6 +31,21 @@ jobs:
run: npm run lint
env:
ESLINT_USE_FLAT_CONFIG: false
deploy-now:
runs-on: ubuntu-22.04
permissions:
contents: read
steps:
- name: checkout
uses: actions/checkout@v4
with:
submodules: recursive
- name: 'Setup node and install dependencies'
uses: ./.github/actions/setup-node-and-install-dependencies
with:
working-directory: 'hp'
node-version-file: 'hp/.nvmrc'
dependencies-lock-file: 'hp/package-lock.json'
- name: Build project
working-directory: hp
run: npm run build
Expand Down

0 comments on commit 573d62e

Please sign in to comment.