Skip to content

Commit

Permalink
doc(README): add ci & coverage badges
Browse files Browse the repository at this point in the history
- ci: mark win as experimental
  • Loading branch information
msimerson committed Feb 19, 2024
1 parent 2352b8f commit 4143354
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,8 @@ jobs:
strategy:
matrix:
node-version: ${{ fromJson(needs.get-lts.outputs.active) }}
experimental: [true]
fail-fast: false
experimental: true
steps:
- name: Install MySQL
run: |
Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
[![Build Status](https://github.com/NicTool/api/actions/workflows/ci.yml/badge.svg)](https://github.com/NicTool/api/actions/workflows/ci.yml)
[![Coverage Status](https://coveralls.io/repos/github/NicTool/api/badge.svg)](https://coveralls.io/github/NicTool/api)

# nt-api

nictool api
Expand Down
10 changes: 5 additions & 5 deletions test/fixtures/.setup.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
const group = require('../lib/group')
const user = require('../lib/user')
// const session = require('../lib/session')
const group = require('../../lib/group')
const user = require('../../lib/user')
// const session = require('../../lib/session')

const userCase = require('./fixtures/user.json')
const groupCase = require('./fixtures/group.json')
const userCase = require('./user.json')
const groupCase = require('./group.json')

const setup = async () => {
await createTestGroup()
Expand Down
10 changes: 5 additions & 5 deletions test/fixtures/.teardown.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
const group = require('../lib/group')
// const session = require('../lib/session')
const user = require('../lib/user')
const userCase = require('./fixtures/user.json')
const groupCase = require('./fixtures/group.json')
const group = require('../../lib/group')
const user = require('../../lib/user')
// const session = require('../../lib/session')
const userCase = require('./user.json')
const groupCase = require('./group.json')

const teardown = async () => {
// await destroyTestSession()
Expand Down

0 comments on commit 4143354

Please sign in to comment.