2020-05-27 02:42:40 +00:00
|
|
|
# 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: Node.js CI
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ master ]
|
|
|
|
pull_request:
|
|
|
|
branches: [ master ]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2020-05-27 03:04:45 +00:00
|
|
|
node-version: [12.x]
|
2020-05-27 02:42:40 +00:00
|
|
|
|
|
|
|
steps:
|
2020-05-27 03:38:29 +00:00
|
|
|
- uses: actions/checkout@v2
|
2020-05-27 02:42:40 +00:00
|
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
|
|
uses: actions/setup-node@v1
|
|
|
|
with:
|
|
|
|
node-version: ${{ matrix.node-version }}
|
|
|
|
- run: npm ci
|
|
|
|
- run: npm run build --if-present
|
2020-05-27 03:38:29 +00:00
|
|
|
- name: Upload Ubuntu Artifact
|
2020-05-27 03:23:58 +00:00
|
|
|
uses: actions/upload-artifact@v2
|
|
|
|
with:
|
2020-05-27 03:50:26 +00:00
|
|
|
name: freetube-vue_0.8.0_amd64.deb
|
2020-05-27 03:23:58 +00:00
|
|
|
path: build/freetube-vue_0.8.0_amd64.deb
|