Skip to content

Commit

Permalink
run GHA on pull requests (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
aduh95 authored Apr 23, 2022
1 parent f370f7d commit 1c85b1b
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
name: CI
on: [push]
on:
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
push:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: ['14', '16', '18']
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- run: npm ci
Expand Down

0 comments on commit 1c85b1b

Please sign in to comment.