Skip to content

Commit

Permalink
Create lint-and-check.yml CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
sisou committed Oct 29, 2024
1 parent bf82af2 commit 6909fba
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 3 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/lint-and-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs

name: Lint and Check

on:
- push

jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: '**/node_modules'
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
- name: Install packages
run: yarn install
- name: Check formatting
run: yarn dprint check
- name: Check lints
run: yarn lint
- name: Check types
run: yarn build --noEmit
4 changes: 1 addition & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,7 @@
"scripts": {
"build": "tsc",
"fmt": "dprint fmt",
"fmt:check": "dprint fmt --check",
"lint": "oxlint",
"typecheck": "tsc --noEmit"
"lint": "oxlint"
},
"devDependencies": {
"dprint": "^0.47.5",
Expand Down

0 comments on commit 6909fba

Please sign in to comment.