1
0
mirror of https://github.com/mattermost/focalboard.git synced 2024-12-24 13:43:12 +02:00
focalboard/.github/workflows/ci.yml

56 lines
1.2 KiB
YAML
Raw Normal View History

2021-01-07 00:27:51 +02:00
name: Check-in tests
on: [push, pull_request]
2021-01-07 00:27:51 +02:00
jobs:
ci-ubuntu:
2021-03-26 22:56:39 +02:00
runs-on: ubuntu-18.04
2021-01-07 00:27:51 +02:00
steps:
- name: Checkout
uses: actions/checkout@v2
- name: npm ci
run: cd webapp; npm ci
2021-01-07 00:27:51 +02:00
- name: ESLint
run: cd webapp; npm run check
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.16
2021-01-07 00:27:51 +02:00
- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: 16.1.0
2021-01-07 00:27:51 +02:00
- name: Build Linux server
run: make server-linux-package
- name: Copy server binary for Cypress
2021-01-29 00:23:52 +02:00
run: cp bin/linux/focalboard-server bin/
2021-01-07 00:27:51 +02:00
- name: Upload server package
uses: actions/upload-artifact@v1
with:
2021-01-26 20:48:32 +02:00
name: focalboard-server-linux-amd64.tar.gz
path: ${{ github.workspace }}/dist/focalboard-server-linux-amd64.tar.gz
2021-01-07 00:27:51 +02:00
- name: "Test server: sqlite"
2021-01-07 00:27:51 +02:00
run: make server-test
- name: "Test server: mysql"
run: make server-test-mysql
- name: "Test server: postgres"
run: make server-test-postgres
2021-01-07 00:27:51 +02:00
- name: "Test webapp: Jest"
run: cd webapp; npm run test
- name: "Test webapp: Cypress"
run: "cd webapp; npm run cypress:ci"