Skip to content

Commit

Permalink
chore: setup GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
kelp404 committed Aug 23, 2022
1 parent 93b8494 commit ccfc442
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: test

on: [push]

jobs:
test:
runs-on: ubuntu-20.04
strategy:
matrix:
node-version: [16.x, 18.x]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run eslint

0 comments on commit ccfc442

Please sign in to comment.