Skip to content

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

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

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

Workflow file for this run

name: "[CI] Javascript"
on:
push:
branches:
- develop
- release/*
- "*-stable"
pull_request:
branches-ignore:
- "chore/l10n*"
paths:
- "*"
- ".github/**"
- "decidim-admin/**"
- "decidim-comments/**"
- "decidim-core/**"
- "decidim-dev/**"
env:
CI: "true"
NODE_VERSION: 16.9.1
jobs:
main:
name: Tests
runs-on: ubuntu-20.04
if: "!startsWith(github.head_ref, 'chore/l10n')"
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: 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)-javascript"
- 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: npm run test
name: Test JS files