Skip to content
This repository was archived by the owner on Jun 11, 2025. It is now read-only.

Commit 3ec8e64

Browse files
authored
chore: Update linter & test workflows (#58)
1 parent 1ac0aa4 commit 3ec8e64

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

.github/workflows/lint.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@ jobs:
1919
runs-on: ubuntu-latest
2020
steps:
2121
- uses: actions/checkout@v2
22-
- run: |
23-
echo "No lint checks";
24-
exit 1;
22+
- uses: actions/setup-node@v1
23+
with:
24+
node-version: 16
25+
- name: Install dependencies
26+
run: npm ci
27+
- name: Lint files
28+
run: npm run lint

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ jobs:
2121
- uses: actions/checkout@v2
2222
- run: |
2323
echo "No tests";
24-
exit 1;
24+
exit 0;

0 commit comments

Comments
 (0)