Skip to content

Backport 'Fix HTML titles in admin panel' to v0.27 #33936

Backport 'Fix HTML titles in admin panel' to v0.27

Backport 'Fix HTML titles in admin panel' to v0.27 #33936

Workflow file for this run

name: "[CI] Main folder"
on:
push:
branches:
- develop
- release/*
- "*-stable"
pull_request:
branches-ignore:
- "chore/l10n*"
env:
CI: "true"
RUBY_VERSION: 3.0.2
NODE_VERSION: 16.9.1
jobs:
main:
name: Tests
runs-on: ubuntu-20.04
timeout-minutes: 60
steps:
- uses: rokroskar/workflow-run-cleanup-action@v0.3.3
if: "github.ref != 'refs/heads/develop'"
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
- uses: actions/checkout@v2.0.0
with:
fetch-depth: 1
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ env.RUBY_VERSION }}
bundler-cache: true
- uses: actions/setup-node@v1
with:
node-version: ${{ env.NODE_VERSION }}
- name: Get npm cache directory path
id: npm-cache-dir-path
run: echo "::set-output name=dir::$(npm get cache)-main"
- uses: actions/cache@v2
id: npm-cache
with:
path: ${{ steps.npm-cache-dir-path.outputs.dir }}
key: npm-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
npm-
- name: Install JS dependencies
run: npm ci
- run: bundle exec rspec
name: RSpec
env:
SIMPLECOV: "true"