Skip to content

Commit 09c9523

Browse files
committed
Revert "Merge pull request #18 from duckduckgo/revert-16-randerson/improve-devex"
This reverts commit 109d268, reversing changes made to c7e4ede.
1 parent 8a3e97d commit 09c9523

File tree

13 files changed

+11145
-3541
lines changed

13 files changed

+11145
-3541
lines changed

.github/workflows/test.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Test
2+
3+
on:
4+
pull_request:
5+
branches: [main]
6+
7+
jobs:
8+
test:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v4
12+
- name: Setup Node.js
13+
uses: actions/setup-node@v3
14+
with:
15+
node-version-file: '.nvmrc'
16+
- run: npm ci
17+
- run: npm run lint
18+
- run: npm test
19+
- run: npm run build
20+
- name: Check for uncommitted build file
21+
run: git diff --exit-code

.nvmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
22

.prettierignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
dist
2+
package-lock.json

.prettierrc.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"singleQuote": true,
3+
"printWidth": 140,
4+
"tabWidth": 4
5+
}

0 commit comments

Comments
 (0)