53 lines
1.1 KiB
YAML
Raw Normal View History

2020-01-19 18:08:26 +02:00
name: tiktok-dl_CI
2020-02-25 21:44:43 +02:00
on: [push, pull_request]
2020-01-19 18:08:26 +02:00
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Set up Go 1.13
uses: actions/setup-go@v1
with:
go-version: 1.13
id: go
2020-01-20 21:12:25 +02:00
- name: Set up node 10
uses: actions/setup-node@v1
with:
node-version: '10.x'
2020-01-19 18:08:26 +02:00
- name: Check out code into the Go module directory
uses: actions/checkout@v1
- name: Get dependencies
run: |
2020-01-20 21:12:25 +02:00
npm install
npm run install-dependencies
2020-01-19 18:08:26 +02:00
2020-01-20 21:12:25 +02:00
- name: Run unit tests
run: npm run test
2020-01-19 18:08:26 +02:00
2020-01-20 21:12:25 +02:00
- name: Build
run: npm run build:dist
- name: Copy license
run: cp LICENSE out
2020-01-19 18:08:26 +02:00
- name: Upload Unix Artifacts
if: startsWith(matrix.os, 'ubuntu-')
uses: actions/upload-artifact@v1
with:
name: tiktok-dl_linux
2020-01-20 21:12:25 +02:00
path: out
2020-01-19 18:08:26 +02:00
- name: Upload Windows Artifacts
if: startsWith(matrix.os, 'windows-')
uses: actions/upload-artifact@v1
with:
name: tiktok-dl_win64
2020-01-20 21:12:25 +02:00
path: out