Skip to content

Commit f66145a

Browse files
feature: replace Travis CI with GitHub Actions workflow (ci.yml)
Co-Authored-By: Eddie Mattout <eddie.mattout@cognition.ai>
1 parent dbf721a commit f66145a

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: CI
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v4
10+
- uses: actions/setup-node@v4
11+
with:
12+
node-version: 20
13+
cache: 'npm'
14+
- run: npm ci
15+
- run: npm run lint
16+
- run: npm run test -- --watch=false --browsers=ChromeHeadlessNoSandbox
17+
- run: npm run build -- --configuration production

0 commit comments

Comments
 (0)