-
Notifications
You must be signed in to change notification settings - Fork 138
44 lines (39 loc) · 1.2 KB
/
nodejs.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
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Testing
on:
push:
branches: [testing]
pull_request:
branches: [testing]
jobs:
build:
runs-on: macos-10.15
strategy:
matrix:
# node-version: [8.x, 10.x, 12.x]
node-version: [16.x]
steps:
- name: Checkout
uses: actions/checkout@v2
with:
persist-credentials: false
- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Run Webpack
run: cd _src && rm -rf node_modules && npm install && npm run build --if-present
env:
CI: true
- name: Build
run: bash _src/_compile.sh
env:
CI: true
- name: Deploy to gh-pages
uses: JamesIves/github-pages-deploy-action@releases/v3
with:
ACCESS_TOKEN: ${{secrets.DEPLOY_OBO}}
# SSH: true
BRANCH: gh-pages
FOLDER: build