Skip to content

Commit

Permalink
build(npm): applique les formatter (#191)
Browse files Browse the repository at this point in the history
  • Loading branch information
bonjourmauko committed Nov 28, 2023
1 parent 4c4b8de commit d3a950c
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 12 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,20 @@ name: Run tests

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

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: 18.x
cache: 'npm'
- run: npm ci
- run: npm run build --if-present
- run: npm run test_single_run
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: 18.x
cache: 'npm'
- run: npm ci
- run: npm run build --if-present
- run: npm run test_single_run
4 changes: 3 additions & 1 deletion src/views/bouquets/BouquetEditView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,9 @@ const availabilityEnum = {
}
const goToDatasetPage = (id) => {
const url = config.website.menu_items.find((link) => link.linkPage === '/datasets')
const url = config.website.menu_items.find(
(link) => link.linkPage === '/datasets'
)
return `${url.linkPage}/${id}`
}
Expand Down

0 comments on commit d3a950c

Please sign in to comment.