Skip to content

Commit

Permalink
ci: still trying win tests
Browse files Browse the repository at this point in the history
  • Loading branch information
msimerson committed Feb 28, 2024
1 parent 50eb4e4 commit 8c3543a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
node-version: [ 20 ]
# node-version: ${{ fromJson(needs.get-lts.outputs.active) }}
node-version: [ 20 ]
fail-fast: false
steps:
- run: sudo /etc/init.d/mysql start
Expand All @@ -68,8 +68,8 @@ jobs:
runs-on: macos-latest
strategy:
matrix:
node-version: [ 20 ]
# node-version: ${{ fromJson(needs.get-lts.outputs.active) }}
node-version: [ 20 ]
fail-fast: false
steps:
- name: Install & Start MySQL
Expand Down Expand Up @@ -107,4 +107,6 @@ jobs:
node-version: ${{ matrix.node-version }}
- run: sh sql/init-mysql.sh
- run: npm install
- run: npm test
- run: sh test.sh
env:
MYSQL_PWD: ''
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
"prettier:fix": "npm run prettier -- --write",
"start": "NODE_ENV=production node ./server",
"develop": "NODE_ENV=development node ./server",
"test": "sh test.sh",
"test": "./test.sh",
"versions": "npx dependency-version-checker check",
"watch": "sh test.sh watch"
"watch": "./test.sh watch"
},
"repository": {
"type": "git",
Expand Down

0 comments on commit 8c3543a

Please sign in to comment.