Skip to content

Commit

Permalink
Merge branch 'main' of github.com:BlueWinds/bluescribe
Browse files Browse the repository at this point in the history
  • Loading branch information
BlueWinds committed Aug 9, 2023
2 parents 839854e + 73f89e3 commit 8bd3565
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
24 changes: 24 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: 'test'

on:
push:
pull_request:
types: [opened, synchronize]

jobs:
test:
permissions:
contents: write
strategy:
fail-fast: false

runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: setup node
uses: actions/setup-node@v3
with:
node-version: 18
- run: npm ci
- run: npm run build --if-present
- run: npm test
2 changes: 1 addition & 1 deletion src/__tests__/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ describe('40k', () => {
let gameData
beforeAll(async () => {
gameData = await readFiles(path.join(__dirname, 'downloadedGameSystems/wh40k'), fs)
})
}, 60000)

const rosters = {
'12AvatarKhaine.ros': {
Expand Down

0 comments on commit 8bd3565

Please sign in to comment.