Skip to content

Commit e89e341

Browse files
authored
V3 - a full rewrite (#100)
- Remove Puppeteer - Remove built-in CSS fetching; you must bring your own now - Goodbye to Ink; You've served me well, so thanks - Remove verbose mode; If you need more details, use `--json` or go to the website
1 parent 95d53ed commit e89e341

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+1982
-11006
lines changed

.github/workflows/test.yaml

Lines changed: 13 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
2-
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
3-
41
name: Test
52

63
on:
@@ -10,20 +7,22 @@ on:
107
branches: [master]
118

129
jobs:
13-
build:
14-
runs-on: ubuntu-latest
15-
10+
test:
11+
name: Node.js v${{ matrix.nodejs }} (${{ matrix.os }})
12+
runs-on: ${{ matrix.os }}
13+
timeout-minutes: 3
1614
strategy:
1715
matrix:
18-
node-version: [8.x, 10.x, 12.x]
19-
16+
nodejs: [18, 20]
17+
os: [ubuntu-latest]
2018
steps:
21-
- uses: actions/checkout@v2
22-
- name: Use Node.js ${{ matrix.node-version }}
23-
uses: actions/setup-node@v1
19+
- uses: actions/checkout@v3
20+
- uses: actions/setup-node@v3
2421
with:
25-
node-version: ${{ matrix.node-version }}
26-
- run: npm ci
27-
- run: npm test
22+
node-version: ${{ matrix.nodejs }}
23+
- name: Install dependencies
24+
run: npm ci --ignore-scripts --no-audit
25+
- name: Run tests
26+
run: npm test
2827
env:
2928
CI: true

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
node_modules
1+
node_modules
2+
dist
3+
.DS_Store

example.jpg

124 KB
Loading

example.png

-111 KB
Binary file not shown.

0 commit comments

Comments
 (0)