Skip to content

Commit

Permalink
V3 - a full rewrite (#100)
Browse files Browse the repository at this point in the history
- 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
  • Loading branch information
bartveneman authored Sep 15, 2023
1 parent 95d53ed commit e89e341
Show file tree
Hide file tree
Showing 52 changed files with 1,982 additions and 11,006 deletions.
27 changes: 13 additions & 14 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions

name: Test

on:
Expand All @@ -10,20 +7,22 @@ on:
branches: [master]

jobs:
build:
runs-on: ubuntu-latest

test:
name: Node.js v${{ matrix.nodejs }} (${{ matrix.os }})
runs-on: ${{ matrix.os }}
timeout-minutes: 3
strategy:
matrix:
node-version: [8.x, 10.x, 12.x]

nodejs: [18, 20]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm test
node-version: ${{ matrix.nodejs }}
- name: Install dependencies
run: npm ci --ignore-scripts --no-audit
- name: Run tests
run: npm test
env:
CI: true
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
node_modules
node_modules
dist
.DS_Store
Binary file added example.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed example.png
Binary file not shown.
Loading

0 comments on commit e89e341

Please sign in to comment.