27 lines
593 B
YAML
27 lines
593 B
YAML
name: Test
|
|
on:
|
|
pull_request: { }
|
|
push:
|
|
branches: [ master, develop ]
|
|
repository_dispatch:
|
|
types: [ element-web-notify ]
|
|
env:
|
|
# These must be set for fetchdep.sh to get the right branch
|
|
REPOSITORY: ${{ github.repository }}
|
|
PR_NUMBER: ${{ github.event.pull_request.number }}
|
|
jobs:
|
|
test:
|
|
name: "Test"
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: actions/setup-node@v3
|
|
with:
|
|
cache: 'yarn'
|
|
|
|
- name: Install Dependencies
|
|
run: "./scripts/layered.sh"
|
|
|
|
- name: Run Tests
|
|
run: "yarn test"
|