diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..389dd0e --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,24 @@ +on: + push: + branches: + - master + pull_request: + +jobs: + test: + runs-on: ubuntu-latest + strategy: + matrix: + node-version: [8] + steps: + - uses: actions/checkout@v4 + - name: Setup Python 3.8 + uses: actions/setup-python@v4 + with: + python-version: '3.8' + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v4 + with: + node-version: ${{ matrix.node-version }} + - run: npm install + - run: npm test diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index c888571..0000000 --- a/.travis.yml +++ /dev/null @@ -1,13 +0,0 @@ -language: node_js -node_js: - - '4' - - '6' - - '8' -env: - - CXX=g++-4.8 -addons: - apt: - sources: - - ubuntu-toolchain-r-test - packages: - - g++-4.8 \ No newline at end of file diff --git a/test/mocha.opts b/test/mocha.opts index 12eef2b..f82a592 100644 --- a/test/mocha.opts +++ b/test/mocha.opts @@ -1,5 +1,4 @@ --require should --reporter spec --ui bdd ---growl -test \ No newline at end of file +test