Skip to content

Commit

Permalink
Add tests for some KaitaiStream methods
Browse files Browse the repository at this point in the history
  • Loading branch information
Mingun committed Dec 12, 2021
1 parent f0a9bac commit f379e62
Show file tree
Hide file tree
Showing 5 changed files with 7,308 additions and 2 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Tests

on:
push:
branches:
- '*'
pull_request:
branches: [master]

jobs:
build:

strategy:
matrix:
node-version: [12.x, 14.x, 16.x]
os: [ubuntu-latest, windows-latest, macos-latest]

runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Test
run: npm run test
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/node_modules
Loading

0 comments on commit f379e62

Please sign in to comment.