Skip to content

Commit

Permalink
ci: add gitHub actions workflow for testing and remove travis ci config
Browse files Browse the repository at this point in the history
  • Loading branch information
EastSun5566 committed Sep 24, 2024
1 parent fb3d137 commit b2addee
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 6 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Test

on:
push:
branches: [master]
pull_request:
branches: [master]

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18.x
- run: |
npm i
npm test
6 changes: 0 additions & 6 deletions .travis.yml

This file was deleted.

0 comments on commit b2addee

Please sign in to comment.