Skip to content

Commit 010c4bd

Browse files
authored
Simplify setup (#339)
* Simplify setup * no custom resolutions
1 parent e46d6b8 commit 010c4bd

File tree

9 files changed

+15323
-7476
lines changed

9 files changed

+15323
-7476
lines changed

.eslintrc.cjs

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

.github/workflows/main.yml

Lines changed: 5 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -10,28 +10,21 @@ jobs:
1010

1111
env:
1212
CI: true
13-
YARN_IGNORE_ENGINES: true
1413

1514
steps:
16-
- name: Begin CI...
17-
uses: actions/checkout@v2
18-
19-
- name: Use Node
20-
uses: actions/setup-node@v1
15+
- uses: actions/checkout@v5
16+
- uses: actions/setup-node@v6
2117
with:
2218
node-version: ${{ matrix.node }}
2319

2420
- name: Install dependencies
25-
run: yarn install --frozen-lockfile
26-
27-
- name: Lint
28-
run: yarn lint
21+
run: npm ci
2922

3023
- name: Test
31-
run: yarn test
24+
run: npm test
3225

3326
- name: Build
34-
run: yarn build
27+
run: npm run build
3528

3629
- name: Run benchmark
3730
run: node benchmark.js | tee output.txt

.husky/.gitignore

Lines changed: 0 additions & 1 deletion
This file was deleted.

.husky/pre-commit

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

.publishrc

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

0 commit comments

Comments
 (0)