Skip to content

Commit

Permalink
Merge pull request #77 from garbados/garbados-refactor
Browse files Browse the repository at this point in the history
breaking: refactor to use mocha, tweetnacl
  • Loading branch information
garbados authored Aug 6, 2021
2 parents b068df0 + 7d7bb24 commit f6edf9d
Show file tree
Hide file tree
Showing 12 changed files with 15,313 additions and 26,868 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
---
name: CI

on:
pull_request:
push:
branches:
- master

jobs:
tests:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
node: [12, 14, 16]
steps:
- uses: actions/checkout@v2

- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}

- uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- run: npm ci

- name: unit test
run: npm test
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
node_modules/
.nyc_output/
bundle.js
bundle.min.js
scratch.js
3 changes: 0 additions & 3 deletions .travis.yml

This file was deleted.

Loading

0 comments on commit f6edf9d

Please sign in to comment.