Skip to content

Commit f45a58d

Browse files
authored
Merge pull request #101 from threefoldtech/CI_pipeline
adding CI workflow
2 parents 47d2d60 + 2197dcc commit f45a58d

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/CI.yml

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: CI pipeline
2+
3+
on:
4+
push:
5+
6+
jobs:
7+
build:
8+
runs-on: ubuntu-latest
9+
10+
steps:
11+
- name: Checkout the repo
12+
uses: actions/checkout@v3
13+
- name: Node install
14+
uses: actions/setup-node@v3
15+
with:
16+
node-version: 14
17+
cache: "yarn"
18+
cache-dependency-path: "**/yarn.lock"
19+
- name: Install dependencies
20+
run: yarn install
21+
- name: Build
22+
run: yarn build

0 commit comments

Comments
 (0)