Skip to content

Commit ff72fb2

Browse files
authored
ownership transfer updates (#161)
* fix: update links (hypermodules->ungoldman) * docs: fix layout * ci: rename workflow (test->tests) * docs: update badges * ci: rm automerge (not working)
1 parent 102dbdf commit ff72fb2

File tree

6 files changed

+110
-160
lines changed

6 files changed

+110
-160
lines changed

.github/workflows/test.yml

-33
This file was deleted.

.github/workflows/tests.yml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: tests
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
test:
7+
runs-on: ${{ matrix.os }}
8+
9+
strategy:
10+
matrix:
11+
os: [ubuntu-latest]
12+
node: [12, 14]
13+
14+
steps:
15+
- uses: actions/checkout@v3
16+
- name: Use Node.js ${{ matrix.node-version }}
17+
uses: actions/setup-node@v3
18+
with:
19+
node-version: ${{ matrix.node-version }}
20+
- run: npm i
21+
- run: npm test

0 commit comments

Comments
 (0)