Skip to content

Commit d8f2d07

Browse files
committed
ci: lint and test
1 parent 5638616 commit d8f2d07

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/ci.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: CI
2+
on:
3+
push:
4+
branches:
5+
- main
6+
pull_request:
7+
8+
jobs:
9+
main:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v3
13+
- uses: actions/setup-node@v3
14+
with:
15+
cache: 'yarn'
16+
cache-dependency-path: yarn.lock
17+
- run: yarn install --frozen-lockfile
18+
- run: yarn lint
19+
- run: yarn test

0 commit comments

Comments
 (0)