Skip to content

Merge pull request #5 from awendt/fix-notifications-for-reassigned-prs #4

Merge pull request #5 from awendt/fix-notifications-for-reassigned-prs

Merge pull request #5 from awendt/fix-notifications-for-reassigned-prs #4

Workflow file for this run

name: Test
on:
pull_request:
push:
branches: [main]
jobs:
test:
runs-on: ubuntu-22.04
strategy:
matrix:
node_version:
- 18
- 20
- 22
steps:
- uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node_version }}
- name: NPM install
run: npm ci
- name: Lint Javascript code
run: npm run lint
- name: Test Javascript code
run: npm run test