diff --git a/.github/workflows/build-binaries.yml b/.github/workflows/build-binaries.yml index 19760fd1a..01b436bed 100644 --- a/.github/workflows/build-binaries.yml +++ b/.github/workflows/build-binaries.yml @@ -46,6 +46,7 @@ jobs: run: yarn generate - name: Lint Files + if: runner.os != 'Windows' run: yarn lint-full - name: Build windows production binaries diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 9cab74b71..7e74cb96d 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -47,8 +47,9 @@ jobs: run: yarn generate - name: Lint Files + if: runner.os != 'Windows' run: | - yarn format-full --list-different + yarn format-full yarn eslint yarn tslint diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4f56cc97b..7fe998f3f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -43,6 +43,7 @@ jobs: run: yarn generate - name: Lint Files + if: runner.os != 'Windows' run: yarn lint-full - name: Build windows production binaries diff --git a/package.json b/package.json index c1d06a746..d05625c77 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "session-messenger-desktop", "productName": "Session", "description": "Private messaging from your desktop", - "version": "1.0.5", + "version": "1.0.6", "license": "GPL-3.0", "author": { "name": "Loki Project", @@ -48,8 +48,8 @@ "lint-files-full": "yarn eslint-full && yarn tslint", "lint-deps": "node ts/util/lint/linter.js", "tslint": "tslint --format stylish --project .", - "format": "prettier --list-different --write `git ls-files --modified *.{css,js,json,md,scss,ts,tsx}` `git ls-files --modified ./**/*.{css,js,json,md,scss,ts,tsx}`", - "format-full": "prettier --list-different --write \"*.{css,js,json,md,scss,ts,tsx}\" \"./**/*.{css,js,json,md,scss,ts,tsx}\"", + "format": "prettier --list-different --write `git ls-files --modified *.{css,js,json,scss,ts,tsx}` `git ls-files --modified ./**/*.{css,js,json,scss,ts,tsx}`", + "format-full": "prettier --list-different --write \"*.{css,js,json,scss,ts,tsx}\" \"./**/*.{css,js,json,scss,ts,tsx}\"", "transpile": "tsc", "clean-transpile": "rimraf ts/**/*.js && rimraf ts/*.js", "pow-metrics": "node metrics_app.js localhost 9000",