Skip to content

Commit

Permalink
ci: update actions and their config (#33)
Browse files Browse the repository at this point in the history
  • Loading branch information
Comandeer authored May 7, 2024
1 parent c427ea4 commit 17657a6
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: Git checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- name: Install dependencies
Expand All @@ -32,7 +32,9 @@ jobs:
- name: Run tests
run: npm test
- name: Upload coverage data to Codecov
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
- name: Build package
run: npm run build
- name: Lint package
Expand Down
12 changes: 12 additions & 0 deletions .github/workflows/prLinter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: Lint PR title
on:
pull_request:
types: [opened, reopened, edited, synchronize]

jobs:
lint:
name: Lint PR title
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: comandeer/lint-pr-title@v1

0 comments on commit 17657a6

Please sign in to comment.