Skip to content

Commit 152d8ec

Browse files
authored
Merge pull request #498 from ember-codemods/github-actions
move from travis to github actions
2 parents 20eade5 + 8a78619 commit 152d8ec

File tree

2 files changed

+33
-15
lines changed

2 files changed

+33
-15
lines changed

.github/workflows/ci.yml

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
- master
8+
pull_request: {}
9+
10+
jobs:
11+
build:
12+
13+
runs-on: ubuntu-latest
14+
15+
strategy:
16+
matrix:
17+
node-version: [10.x, 12.x]
18+
19+
steps:
20+
- uses: actions/checkout@v2
21+
- uses: actions/setup-node@v3
22+
with:
23+
node-version: ${{ matrix.node-version }}
24+
cache: yarn
25+
- run: yarn install --frozen-lockfile
26+
- run: yarn lint
27+
- run: yarn test
28+
- uses: coverallsapp/github-action@master
29+
with:
30+
github-token: ${{ secrets.GITHUB_TOKEN }}
31+
- run: yarn test:integration
32+
- run: yarn test:notelemetry
33+

.travis.yml

-15
This file was deleted.

0 commit comments

Comments
 (0)