Skip to content

Commit

Permalink
Merge pull-request #3
Browse files Browse the repository at this point in the history
  • Loading branch information
r-n-o committed Oct 12, 2023
2 parents 8c98106 + f81ac68 commit 8d95662
Show file tree
Hide file tree
Showing 9 changed files with 13,500 additions and 270 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: CI

on:
push:
branches:
- main
pull_request:
workflow_dispatch: # Allows manual invocation

jobs:
tests:
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # v3.0.2

- name: Install node
uses: actions/setup-node@8c91899e586c5b171469028077307d293428b516 # v3.5.1
with:
node-version: 18

- name: Install dependencies
run: npm install

- name: Run Tests
run: npm test
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@ This repository contains code for the recovery component of Turnkey. This self-c

This page is hosted on Github pages at https://tkhq.github.io/recovery/

# Running tests

This HTML page has tests. They run on CI automatically. If you want to run them locally:
```
npm install
npm test
```

# Running a fake recovery

Download mono, then check out `zeke-recovery-demo`:
Expand Down
7 changes: 7 additions & 0 deletions babel.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
module.exports = {
presets: [
[
'@babel/preset-env'
],
],
}
Loading

0 comments on commit 8d95662

Please sign in to comment.