Skip to content

Commit c4a4a5f

Browse files
committed
CI WIP
1 parent 33c8d0f commit c4a4a5f

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/ci.yml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: <abbr title="Continuous Integration">CI</abbr>
2+
3+
on:
4+
push:
5+
branches: [main]
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v3
12+
- name: Use Node.js 16
13+
uses: actions/setup-node@v3
14+
with:
15+
node-version: 16
16+
- run: npm ci
17+
- run: nx build social-network
18+
- run: nx test social-network

0 commit comments

Comments
 (0)