Skip to content

Commit 47eabc0

Browse files
authored
Add CI action
1 parent a01dde5 commit 47eabc0

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/ci.yml

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: CI
2+
# Controls when the workflow will run
3+
on:
4+
push:
5+
branches: [ "master" ]
6+
pull_request:
7+
branches: [ "master" ]
8+
9+
workflow_dispatch:
10+
jobs:
11+
build:
12+
name: Build and test
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@v2
16+
- uses: borales/[email protected]
17+
with:
18+
cmd: install # will run `yarn install` command
19+
- uses: borales/[email protected]
20+
with:
21+
cmd: build # will run `yarn build` command
22+
- uses: borales/[email protected]
23+
with:
24+
cmd: test # will run `yarn test` command

0 commit comments

Comments
 (0)