Skip to content

Commit

Permalink
remove "build"
Browse files Browse the repository at this point in the history
  • Loading branch information
EthanBonsignori committed Feb 14, 2024
1 parent f34817f commit 76cd714
Showing 1 changed file with 9 additions and 8 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Lint, Build, and Test
name: Lint and Test

on:
push:
Expand All @@ -11,7 +11,7 @@ on:

jobs:
lint-build-test:
name: Lint, Build, and Test
name: Lint and Test
runs-on: ubuntu-latest

steps:
Expand All @@ -23,9 +23,10 @@ jobs:
with:
node-version-file: .nvmrc
cache: "npm"
cache-dependency-path: "./package-lock.json"
- run: npm ci
- run: npm run lint
# todo: setup test
# - run: npm run test
- run: npm run build
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
# todo: setup test
# - name: Test
# run: npm run test

0 comments on commit 76cd714

Please sign in to comment.