-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replace Azure pipelines with GH Actions
- Loading branch information
Showing
3 changed files
with
43 additions
and
161 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
name: Test | ||
|
||
on: [push] | ||
|
||
jobs: | ||
build: | ||
runs-on: ${{ matrix.config.os }} | ||
strategy: | ||
matrix: | ||
config: | ||
- os: ubuntu-latest | ||
- os: macos-latest | ||
- os: windows-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
submodules: true | ||
|
||
- name: 'Install node modules' | ||
run: 'npm install' | ||
|
||
- name: 'Build translations' | ||
run: 'yarn build:translations' | ||
|
||
- name: 'Test' | ||
run: 'yarn test' | ||
|
||
- name: 'Test UI' | ||
if: runner.os == 'Linux' | ||
run: 'yarn test:ui' | ||
env: | ||
PERCY_TOKEN: ${{ secrets.PERCY_TOKEN }} | ||
|
||
- name: 'Build' | ||
run: 'yarn build' | ||
|
||
- name: 'Build backends' | ||
run: 'yarn build:backends' |
This file was deleted.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.