tiktok-dl/.github/workflows/go.yml

50 lines
1.0 KiB
YAML
Raw Normal View History

2020-01-19 16:08:26 +00:00
name: tiktok-dl_CI
on: [push]
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 19:12:25 +00:00
- name: Set up node 10
uses: actions/setup-node@v1
with:
node-version: '10.x'
2020-01-19 16:08:26 +00:00
- name: Check out code into the Go module directory
uses: actions/checkout@v1
- name: Get dependencies
run: |
2020-01-20 19:12:25 +00:00
npm install
npm run install-dependencies
2020-01-19 16:08:26 +00:00
2020-01-20 19:12:25 +00:00
- name: Run unit tests
run: npm run test
2020-01-19 16:08:26 +00:00
2020-01-20 19:12:25 +00:00
- name: Build
run: npm run build:dist
2020-01-19 16:08:26 +00:00
- name: Upload Unix Artifacts
if: startsWith(matrix.os, 'ubuntu-')
uses: actions/upload-artifact@v1
with:
name: tiktok-dl_linux
2020-01-20 19:12:25 +00:00
path: out
2020-01-19 16:08:26 +00:00
- name: Upload Windows Artifacts
if: startsWith(matrix.os, 'windows-')
uses: actions/upload-artifact@v1
with:
name: tiktok-dl_win64
2020-01-20 19:12:25 +00:00
path: out