diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3328af1..944fdbb 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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