focalboard/.github/workflows/build.yml

48 lines
934 B
YAML
Raw Normal View History

2021-01-06 03:56:11 +01:00
name: Build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: npm install
run: cd webapp; npm install
- name: ESLint
run: cd webapp; npm run check
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.15
2021-01-06 19:07:17 +01:00
- name: Build server Linux package
run: make server-linux-package
2021-01-06 03:56:11 +01:00
2021-01-06 19:22:54 +01:00
- name: Copy server binary for Cypress
run: cp bin/linux/octoserver bin/
2021-01-06 19:07:17 +01:00
- uses: actions/upload-artifact@v1
with:
name: octo-linux-amd64.tar.gz
path: ${{ github.workspace }}/dist/octo-linux-amd64.tar.gz
name: Upload server package
2021-01-06 03:56:11 +01:00
- name: "Test webapp: Jest"
run: cd webapp; npm run test
- name: "Test webapp: Cypress"
run: "cd webapp; npm run cypress:ci"
2021-01-06 05:04:35 +01:00
- name: Test server
2021-01-06 19:07:17 +01:00
run: make server-test