-
Notifications
You must be signed in to change notification settings - Fork 57
45 lines (41 loc) · 1009 Bytes
/
html-build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# This workflow will install node dependencies, build, and run tests
name: html-build
on:
push:
paths:
- 'html/**'
- '.github/**'
pull_request:
paths:
- 'html/**'
- '.github/**'
permissions:
contents: read
jobs:
html-build:
runs-on: ubuntu-latest
if: >
github.event_name != 'pull_request' ||
github.event.pull_request.head.repo.full_name !=
github.event.pull_request.base.repo.full_name
steps:
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
- name: Set up Node
uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3.8.1
with:
node-version: '16'
- name: Install Node dependencies
run: |
cd html
npm ci
cd ..
- name: Build Javascript
run: |
cd html
npm run build
cd ..
- name: Test JavaScript
run: |
cd html
npm test
cd ..