Skip to content

Commit

Permalink
Fixes and git action
Browse files Browse the repository at this point in the history
Action fixes

Fixes

Smh
  • Loading branch information
IsaacMarovitz committed Jul 12, 2023
1 parent d7d40f6 commit 4e5ea39
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 1 deletion.
11 changes: 11 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: Lint
on: [push, pull_request, workflow_dispatch]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install modules
run: npm install
- name: Lint
run: npx eslint .
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,6 @@ coverage
*.njsproj
*.sln
*.sw?

# Build files
*.d.ts
2 changes: 1 addition & 1 deletion tsconfig.json → src/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@
"allowJs": false
},
"references": [
{ "path": "../rpcsx-site"}
{ "path": "../src" }
]
}

0 comments on commit 4e5ea39

Please sign in to comment.