Skip to content

Commit

Permalink
Replace Azure pipelines with GH Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
durasj committed Nov 11, 2023
1 parent e6d2bef commit 62eff5e
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 161 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/package.yaml
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'
154 changes: 0 additions & 154 deletions azure-pipelines.yml

This file was deleted.

11 changes: 4 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 62eff5e

Please sign in to comment.