Skip to content

Commit 779611c

Browse files
committed
Setup GitHub Actions
1 parent 6f27b98 commit 779611c

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/mlflow-js.yaml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: mlflow
2+
on:
3+
push:
4+
branches: [stephany/github-actions-2]
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 and build
15+
working-directory: ./mlflow
16+
run: |
17+
npm ci
18+
npm run build

0 commit comments

Comments
 (0)