discourse/.github/workflows/ember.yml
2021-09-07 14:17:04 -03:00

54 lines
1.3 KiB
YAML

name: Ember CLI tests
on:
pull_request:
push:
branches:
- main
schedule:
- cron: '0 0 * * *'
jobs:
build:
name: run
if: true
runs-on: ubuntu-latest
container: discourse/discourse_test:release
timeout-minutes: 40
steps:
- uses: actions/checkout@master
with:
fetch-depth: 1
- name: Setup Git
run: |
git config --global user.email "ci@ci.invalid"
git config --global user.name "Discourse CI"
- name: Get yarn cache directory
id: yarn-cache-dir
run: echo "::set-output name=dir::$(yarn cache dir)"
- name: Yarn cache
uses: actions/cache@v2
id: yarn-cache
with:
path: ${{ steps.yarn-cache-dir.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Official Plugins Install
if: ${{ github.event_name == 'cron' }}
run: sudo -E -u discourse -H bundle exec rake plugin:install_all_official
- name: Yarn install
working-directory: ./app/assets/javascripts/discourse
run: yarn install
- name: Core QUnit
working-directory: ./app/assets/javascripts/discourse
run: sudo -E -u discourse -H yarn ember test
timeout-minutes: 30