Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,3 @@ dist
types
*.test.ts
*.test.js
.yarn/install-state.gz
10 changes: 5 additions & 5 deletions .github/workflows/check-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ jobs:
with:
node-version: '20'
- name: Install modules
run: yarn
run: npm install
- name: ESLint
run: yarn test
run: npm run test

CodeCheck:
name: CodeCheck
Expand All @@ -36,8 +36,8 @@ jobs:
with:
node-version: '20'
- name: Install modules
run: yarn
run: npm install
- name: ESLint
run: yarn lint-strict
run: npm run lint-strict
- name: TSC
run: yarn tsc --noEmit
run: npm run runtsc --noEmit
3 changes: 0 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
.DS_Store
node_modules
yarn-error.log
coverage/*
dist/*
types/*

.yarnrc.yml
.yarn
*.bak
5 changes: 0 additions & 5 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
.DS_Store
node_modules
yarn-error.log
coverage/*
dist/*
types/*

.yarnrc.yml
.yarn
*.bak
Loading