Skip to content

Commit b6c3cdb

Browse files
committed
chore(github): added ci workflow
1 parent 6d95c26 commit b6c3cdb

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/ci.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
on:
2+
push:
3+
branches:
4+
- '**'
5+
jobs:
6+
install-sprkl-test:
7+
runs-on: ubuntu-latest
8+
name: Installing Sprkl Testing
9+
steps:
10+
11+
- uses: actions/checkout@v3
12+
13+
- name: Sprkl Setup
14+
uses: sprkl-dev/sprkl-action/setup
15+
with:
16+
npm_token: ${{ secrets.USE_SPRKL_CI_TOKEN }}
17+
setenv: false
18+
19+
- run: yarn install
20+
- run: yarn test:e2e:sprkl
21+
env:
22+
SPRKL_RECIPE: all
23+

0 commit comments

Comments
 (0)