Skip to content

Commit

Permalink
rename workflow.yml to ci.yml for consistency with our other repos #288
Browse files Browse the repository at this point in the history
  • Loading branch information
nelsonic committed Jun 22, 2023
1 parent e6574e1 commit d7746fd
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/workflow.yml → .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: Node CI
name: Node.js CI

on: [push, pull_request]
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
test:
Expand All @@ -17,3 +21,5 @@ jobs:
- run: npm i
- run: npm run lint
- run: npm test
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1

0 comments on commit d7746fd

Please sign in to comment.