Skip to content

Commit

Permalink
ci: continue build on error
Browse files Browse the repository at this point in the history
  • Loading branch information
kyle-tennison committed Aug 20, 2024
1 parent 677f54f commit 51f4301
Showing 1 changed file with 9 additions and 13 deletions.
22 changes: 9 additions & 13 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,19 +79,15 @@ jobs:
- name: Run Tauri Build
run: cargo tauri build --verbose
working-directory: src-tauri
continue-on-error: true

eslint:
name: ESLint

prettier:
name: Prettier
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Install Node v20
uses: actions/setup-node@v1
with:
node-version: 20
- name: Yarn Install
run: yarn install
- name: Run ESLint
uses: icrawl/action-eslint@v1
with:
custom-glob: '**/*.{js,ts,tsx}'
- name: Install Prettier
run: npm install --global prettier

- name: Run Prettier check
run: prettier --check "**/*.{js,jsx,ts,tsx,html,css,json,md}"

0 comments on commit 51f4301

Please sign in to comment.