Skip to content

Commit 25eed34

Browse files
committed
chore: add CI, funding, husky, testing LIB
1 parent 9068845 commit 25eed34

File tree

9 files changed

+309
-11
lines changed

9 files changed

+309
-11
lines changed

.github/FUNDING.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
github: [mdevils]
2+
tidelift: "npm/css-selector-parser"

.github/workflows/build.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: build
2+
on: [push, pull_request]
3+
jobs:
4+
build:
5+
runs-on: ubuntu-latest
6+
strategy:
7+
matrix:
8+
node-version: [16.x]
9+
steps:
10+
- uses: actions/checkout@v2
11+
- name: Use Node.js ${{ matrix.node-version }}
12+
uses: actions/setup-node@v1
13+
with:
14+
node-version: ${{ matrix.node-version }}
15+
- run: npm ci --prefer-offline --no-audit --no-update-notifier
16+
- run: npm run lint
17+
- run: npm run test
18+
- run: npm run build
19+
- run: npm run test:lib

.travis.yml

Lines changed: 0 additions & 4 deletions
This file was deleted.

package-lock.json

Lines changed: 253 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)