Skip to content

Commit 0527c66

Browse files
authored
minor #2608 Switch from travis-ci to github actions (acrobat)
This PR was merged into the 1.10-dev branch. Discussion ---------- | Q | A | --------------- | --- | Bug fix? | no | New feature? | no | BC breaks? | no | Related tickets | | License | MIT Commits ------- 47bf50a Switch from travis-ci to github actions
2 parents fddb63c + 47bf50a commit 0527c66

File tree

2 files changed

+22
-7
lines changed

2 files changed

+22
-7
lines changed

.github/workflows/ci.yaml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: CI
2+
3+
on:
4+
[push, pull_request]
5+
6+
jobs:
7+
test:
8+
name: Test
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- uses: actions/checkout@v2
13+
- uses: actions/setup-node@v1
14+
15+
- name: Install grunt
16+
run: yarn global add grunt-cli
17+
18+
- name: Install dependencies
19+
run: yarn
20+
21+
- name: Run tests
22+
run: yarn test

.travis.yml

Lines changed: 0 additions & 7 deletions
This file was deleted.

0 commit comments

Comments
 (0)