-
-
Notifications
You must be signed in to change notification settings - Fork 81
24 lines (18 loc) · 567 Bytes
/
node.yml
File metadata and controls
24 lines (18 loc) · 567 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
name: Node.js
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v1
with:
node-version: "12.x"
registry-url: "https://npm.pkg.github.com"
- name: Install dependencies
working-directory: ${{runner.workspace}}/react-juce/packages/react-juce
run: npm ci
- name: Build react-juce
working-directory: ${{runner.workspace}}/react-juce/packages/react-juce
run: npm run build