Skip to content

Commit ed22cd3

Browse files
authored
Add initial GitHub actions setup (#2)
* Add initial GitHub actions setup * Remove Travis CI script and remove format script in GitHub Actions CI
1 parent 195411d commit ed22cd3

File tree

2 files changed

+23
-21
lines changed

2 files changed

+23
-21
lines changed

.github/workflows/ci.yml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: App CI
2+
3+
on:
4+
push:
5+
branches: [ main ]
6+
pull_request:
7+
branches: [ main ]
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- uses: actions/checkout@v2
15+
- uses: actions/setup-node@v1
16+
with:
17+
node-version: 15.x
18+
19+
- name: Install dependencies
20+
run: yarn install
21+
22+
- name: Run tests
23+
run: yarn run test

.travis.yml

-21
This file was deleted.

0 commit comments

Comments
 (0)