Skip to content

Merge pull request #295 from jhipster/dependabot/npm_and_yarn/babel/t… #841

Merge pull request #295 from jhipster/dependabot/npm_and_yarn/babel/t…

Merge pull request #295 from jhipster/dependabot/npm_and_yarn/babel/t… #841

Workflow file for this run

name: Generator CI
concurrency:
# Group PRs by head_ref, push to main branch by commit id, and others branch by ref.
group: ${{ github.workflow }}-${{ github.head_ref || (github.ref == 'refs/heads/main' && github.sha) || github.ref }}
cancel-in-progress: true
on: [push, pull_request]
jobs:
generator-jhipster-quarkus:
name: npm test
runs-on: ${{ matrix.os }}
if: "!contains(github.event.head_commit.message, '[ci skip]') && !contains(github.event.head_commit.message, '[skip ci]')"
timeout-minutes: 20
strategy:
fail-fast: false
matrix:
node-version: [16]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Run git history
run: git --no-pager log -n 10 --graph --pretty='%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue) <%an>%Creset' --abbrev-commit
- run: npm ci
- run: npm test