Skip to content

Commit

Permalink
ci: update ci to match latest feature changes
Browse files Browse the repository at this point in the history
BREAKING CHANGE: flow is no longer included in ci

working towards conveyal#318
  • Loading branch information
miles-grant-ibigroup committed Jul 7, 2021
1 parent edb4f54 commit 5d70953
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/codespell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ jobs:
- uses: codespell-project/actions-codespell@master
with:
check_filenames: true
skip: ./.git,yarn.lock,flow-typed
skip: ./.git,yarn.lock
2 changes: 1 addition & 1 deletion .github/workflows/node-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Lint code
run: yarn lint
- name: Static typing
run: yarn flow
run: yarn ts
- name: Run tests
run: yarn jest

Expand Down
8 changes: 3 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,17 @@
},
"bin": {
"mastarm": "bin/mastarm",
"mastarm-build": "bin/mastarm-build",
"mastarm-commit": "bin/mastarm-commit",
"mastarm-deploy": "bin/mastarm-deploy",
"mastarm-flow": "bin/mastarm-flow",
"mastarm-format": "bin/mastarm-format",
"mastarm-lint": "bin/mastarm-lint",
"mastarm-lint-messages": "bin/mastarm-lint-messages",
"mastarm-prepublish": "bin/mastarm-prepublish",
"mastarm-test": "bin/mastarm-test"
"mastarm-test": "bin/mastarm-test",
"mastarm-ts": "bin/mastarm-ts"
},
"scripts": {
"cover": "yarn run jest --coverage --coverage-paths bin",
"flow": "bin/mastarm flow",
"ts": "bin/mastarm ts",
"jest": "bin/mastarm test --run-in-band --env test --test-environment node",
"lint": "bin/mastarm lint lib __tests__",
"pretest": "yarn",
Expand Down

0 comments on commit 5d70953

Please sign in to comment.