Skip to content

Commit

Permalink
chore: update linter
Browse files Browse the repository at this point in the history
  • Loading branch information
Tommytrg committed Jul 24, 2024
1 parent 0fc39c1 commit 54c5d6b
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 16 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,7 @@ jobs:

strategy:
matrix:
os: [
macos-latest,
ubuntu-latest,
windows-latest
]
os: [macos-latest, ubuntu-latest, windows-latest]

steps:
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lintAndTest.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Run lint and test
name: Run lint and test

on: pull_request

Expand Down
12 changes: 4 additions & 8 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,7 @@ jobs:

strategy:
matrix:
os: [
macos-latest,
ubuntu-latest,
windows-latest
]
os: [macos-latest, ubuntu-latest, windows-latest]

steps:
- name: Checkout
Expand Down Expand Up @@ -63,11 +59,11 @@ jobs:
- name: Download artifact
uses: actions/download-artifact@v4
with:
pattern: "*artifact"
pattern: '*artifact'
path: release

- name: Create Draft
uses: ncipollo/release-action@v1
with:
artifacts: "release/**/*.exe,release/**/*.AppImage,release/**/*.dmg,release/**/*.snap,release/**/*.zip,release/**/*.yml"
draft: true
artifacts: 'release/**/*.exe,release/**/*.AppImage,release/**/*.dmg,release/**/*.snap,release/**/*.zip,release/**/*.yml'
draft: true
3 changes: 2 additions & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,5 @@
auto-import.d.ts

.witnet-rust-testnet-*-wallet
genesis_block.json
genesis_block.json
pnpm-lock.yaml
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"lint:eslint": "eslint",
"lint:fix:eslint": "pnpm lint:eslint --fix --ext .js,.ts,.vue .",
"lint:fix:prettier": "pnpm lint:prettier --write \"**/*.{ts,js,json,css,scss,vue,html}\"",
"lint:prettier": "prettier --loglevel warn",
"lint:prettier": "prettier --log-level warn",
"postinstall": "electron-builder install-app-deps",
"postuninstall": "electron-builder install-app-deps",
"reinstall": "pnpm clean-deps && pnpm",
Expand Down

0 comments on commit 54c5d6b

Please sign in to comment.