mirror of
https://github.com/tauri-apps/tauricon.git
synced 2026-02-05 03:01:20 +01:00
* Prepare repo for release * fix path for formatter * fix package name in covector config * add resolution overwrite for semver-regex * feat: add covector dep * chore: pin covector * rename jobs * use uniform node-version string * setup node for audit job * cache yarn deps * Revert "cache yarn deps" This reverts commitee37a117bb. * remove outputs Co-authored-by: Jonas Kruckenberg <iterpre@protonmail.com> * Revert "setup node for audit job" This reverts commit267170a74f. Co-authored-by: Lucas Nogueira <lucas@tauri.studio> Co-authored-by: Jonas Kruckenberg <iterpre@protonmail.com>
23 lines
346 B
YAML
23 lines
346 B
YAML
name: Format
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- dev
|
|
pull_request:
|
|
branches:
|
|
- dev
|
|
|
|
jobs:
|
|
format:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/setup-node@v3
|
|
with:
|
|
node-version: '16.x'
|
|
cache: 'yarn'
|
|
- run: yarn install
|
|
- run: yarn format:check
|