Skip to content

CI

CI #733

Workflow file for this run

name: CI
on:
push:
branches: ['**']
paths-ignore: ['*.adoc']
pull_request:
branches: [main]
paths-ignore: ['*.adoc']
schedule:
- cron: '30 2 * * MON'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
activate:
if: >-
github.event_name == 'push' ||
(github.event_name == 'schedule' && github.repository_owner == 'opendevise') ||
(github.event_name == 'pull_request' && !startsWith(github.head_ref, 'docs/'))
runs-on: ubuntu-latest
steps:
- name: Proceed
run: echo ok go
build:
needs: activate
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: '16'
- name: Install dependencies
run: npm ci
- name: Run linter
run: |
npm run lint
if [ -n "$(npm --silent run format && git --no-pager diff --name-only)" ]; then
echo 'Detected pending code style changes'
exit 1
fi
- name: Run tests with coverage
run: npm run coverage