Skip to content

Commit 71fc0b0

Browse files
committed
Setup GitHub Actions
1 parent 72f1eef commit 71fc0b0

File tree

2 files changed

+19
-29
lines changed

2 files changed

+19
-29
lines changed

.github/workflows/mlflow-js.yaml

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: mlflow
2+
on:
3+
push:
4+
branches: [stephany/github-actions]
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v4
10+
- name: Use Node.js
11+
uses: actions/setup-node@v4
12+
with:
13+
node-version: '22.7'
14+
- name: Install dependencies
15+
run: npm ci
16+
- name: Eslint
17+
run: npm run lint
18+
- name: Build
19+
run: npm run build

Jenkinsfile

-29
This file was deleted.

0 commit comments

Comments
 (0)