Skip to content

update tauri.conf.json with new version #65

update tauri.conf.json with new version

update tauri.conf.json with new version #65

name: Enforce Types + Linting
on:
pull_request:
push:
branches:
- main
jobs:
prettier:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}
- name: Install NodeJS
uses: actions/setup-node@v4
- name: Install Dependencies
run: npm ci
- name: Type Check
run: npm run typecheck
- name: ESLint
run: npm run lint:ci