Skip to content

Commit

Permalink
test: cut back to what works for now
Browse files Browse the repository at this point in the history
  • Loading branch information
Rupert Redington committed Sep 12, 2021
1 parent 6baeae4 commit aa2ea7b
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ name: CI

on:
pull_request:
branches: [main]
branches: [main, next]

jobs:
test:
Expand All @@ -17,7 +17,9 @@ jobs:
- uses: actions/checkout@v2
- name: Yarn install (with caching)
uses: bahmutov/npm-install@v1.7.7
- name: Build Test Client
run: yarn build:testable
- name: Test
run: yarn test
- name: Lint
run: yarn lint
# - name: Typecheck
# run: yarn check
# - name: Test
# run: yarn test
4 changes: 2 additions & 2 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ name: 'CodeQL'

on:
push:
branches: [main, heroku]
branches: [main, next]
pull_request:
# The branches below must be a subset of the branches above
branches: [main]
branches: [next]
schedule:
- cron: '0 16 * * 4'

Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
"dev": "next dev",
"start": "next start",
"lint": "next lint",
"check": "tsc -p tsconfig.json --noEmit",
"format": "prettier --write .",
"test": "jest",
"migrate": "migrate-mongo up",
Expand Down

0 comments on commit aa2ea7b

Please sign in to comment.