Skip to content

Commit

Permalink
Merge pull request #27 from apollo-server-integrations/trevor/fix-ci-…
Browse files Browse the repository at this point in the history
…checks
  • Loading branch information
ernestoresende authored May 12, 2023
2 parents ca5529b + aa0ce7f commit 08e3daa
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 12 deletions.
11 changes: 1 addition & 10 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,15 +51,7 @@ jobs:
- setup-node
- run: npm run prettier-check

Spell Check:
docker:
- image: cimg/base:stable
steps:
- setup-node
- run: npm run spell-check

workflows:
version: 2
Build:
jobs:
- NodeJS:
Expand All @@ -70,5 +62,4 @@ workflows:
- "14"
- "16"
- "18"
- Prettier
- Spell Check
- Prettier
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
*.json
*.json5
*.yml
*.yaml
*.md

dist/
Expand Down
2 changes: 1 addition & 1 deletion example/scripts/watch.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { context } from "esbuild";
import { context } from 'esbuild';
import { watchConfig } from './buildConfig.mjs';

let ctx = await context(watchConfig);
Expand Down
9 changes: 8 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,10 @@
"clean": "git clean -dfqX",
"prepack": "npm run build",
"test": "jest",
"test:ci": "jest --coverage --ci --maxWorkers=2 --reporters=default --reporters=jest-junit"
"test:ci": "jest --coverage --ci --maxWorkers=2 --reporters=default --reporters=jest-junit",
"prettier-check": "prettier --check .",
"prettier-fix": "prettier --write .",
"lint": "eslint ."
},
"peerDependencies": {
"@apollo/server": "^4.3.0",
Expand Down Expand Up @@ -47,5 +50,9 @@
},
"engines": {
"node": ">=14.0"
},
"volta": {
"node": "18.16.0",
"npm": "9.6.6"
}
}

0 comments on commit 08e3daa

Please # to comment.