Skip to content

Commit

Permalink
set test to proper
Browse files Browse the repository at this point in the history
  • Loading branch information
dangowans committed Nov 24, 2023
1 parent 4dea933 commit 0c2ac3c
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Test ESLint Config (Should Fail)
name: Test ESLint Config

on: [workflow_dispatch, push, pull_request]

Expand Down Expand Up @@ -28,6 +28,6 @@ jobs:
- name: Install ESLint
run: npm install -g eslint

- name: Run Test (Should Fail)
- name: Run Test
run: npm test

2 changes: 1 addition & 1 deletion eslint-config-cityssm.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ module.exports = {
'unicorn'
],
extends: [
'eslin t:recommended',
'eslint:recommended',
'standard-with-typescript',
'plugin:eslint-comments/recommended',
'plugin:import/recommended',
Expand Down
2 changes: 1 addition & 1 deletion eslint-config-cityssm.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ module.exports = {
'unicorn'
],
extends: [
'eslin t:recommended',
'eslint:recommended',
'standard-with-typescript',
'plugin:eslint-comments/recommended',
'plugin:import/recommended',
Expand Down
2 changes: 1 addition & 1 deletion test/runEslint.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@ try {
});
}
catch {
console.log('❗ Erorr running ESLint.');
console.log('❗ Error running ESLint.');
process.exitCode = 1;
}
2 changes: 1 addition & 1 deletion test/runEslint.mts
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@ try {
}
})
} catch {
console.log('❗ Erorr running ESLint.')
console.log('❗ Error running ESLint.')
process.exitCode = 1
}

0 comments on commit 0c2ac3c

Please sign in to comment.