Skip to content

Commit

Permalink
Merge pull request #1173 from nledez/gh-action-for-ci
Browse files Browse the repository at this point in the history
Remove travis and move CI to Github actions
  • Loading branch information
frankrousseau authored Sep 7, 2023
2 parents 615d8ac + afc3e73 commit 7c1f563
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 23 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---
name: "Kitsu CI"

on:
pull_request:
branches:
- master
push:
branches:
- master

jobs:
ci:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- name: Run tests
env:
NODE_OPTIONS: "--max_old_space_size=8192"
run: |
npm ci
npm run lint -- --quiet
npm run test:unit
1 change: 0 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ jobs:
env:
NODE_OPTIONS: "--max_old_space_size=8192"
run: |
npm ci
npm run build
GIT_COMMIT="$(git rev-parse HEAD)"
GIT_TAG="$(git describe --tags)"
Expand Down
22 changes: 0 additions & 22 deletions .travis.yml

This file was deleted.

0 comments on commit 7c1f563

Please sign in to comment.