Skip to content

Commit

Permalink
Remove quotes to avoid issues
Browse files Browse the repository at this point in the history
  • Loading branch information
MilesBHuff committed Dec 15, 2023
1 parent aa87ed4 commit 416492e
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ name: Node.js CI

on:
push:
branches: [ "main" ]
branches: [ main ]
pull_request:
branches: [ "main" ]
branches: [ main ]

jobs:
build:
Expand All @@ -18,12 +18,12 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
cache: 'npm'
cache-dependency-path: './frontend/npm-shrinkwrap.json'
node-version-file: './frontend/.nvmrc'
cache: npm
cache-dependency-path: frontend/npm-shrinkwrap.json
node-version-file: frontend/.nvmrc
- run: npm ci
working-directory: ./frontend
working-directory: frontend
- run: npm run check
working-directory: ./frontend
working-directory: frontend
- run: npm run build
working-directory: ./frontend
working-directory: frontend

0 comments on commit 416492e

Please sign in to comment.