Skip to content

Commit

Permalink
Merge pull request #5 from Boehringer-Ingelheim/feature/maintenance
Browse files Browse the repository at this point in the history
ci(github): [release] run on branch 'master' and 'next'
  • Loading branch information
SimonGolms authored May 8, 2024
2 parents 7290200 + 2d91a51 commit 44a6dc1
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,23 +3,27 @@ name: Release
on:
push:
branches:
- main
- master
- next

jobs:
release:
env:
# Disable husky (git hooks) in CI, see: https://typicode.github.io/husky/#/?id=disable-husky-in-cidocker
HUSKY: 0
name: Release
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
node-version-file: ".nvmrc"
registry-url: https://registry.npmjs.org/
cache: npm
- name: Install Dependencies
run: npm ci
run: npm clean-install
- name: Run Tests
run: npm test
- name: Release package to npm and GitHub
Expand Down

0 comments on commit 44a6dc1

Please sign in to comment.