Skip to content

Update git workflow #85

Update git workflow

Update git workflow #85

Workflow file for this run

name: "[CI] Locations"
on:
push:
branches:
- develop
- main
- release/*
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
build_app:
name: Build test application
uses: mainio/gha-decidim-module/.github/workflows/build_app.yml@main
secrets: inherit
main:
needs: build_app
name: Tests
runs-on: ubuntu-latest
steps:
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 14
- name: Install dependencies
run: npm install
- name: Update Chromedriver
run: npm install [email protected]
- name: Run Tests
run: npm test