Skip to content

Merge pull request #2 from BitGo/VL-2614-ci-deps-use-the-bitgo-fork-o… #1

Merge pull request #2 from BitGo/VL-2614-ci-deps-use-the-bitgo-fork-o…

Merge pull request #2 from BitGo/VL-2614-ci-deps-use-the-bitgo-fork-o… #1

Workflow file for this run

---
name: Release
on:
push:
branches:
- master
- next
- next-major
- beta
- alpha
- "[0-9]+.[0-9]+.x"
- "[0-9]+.x"
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- lts/*
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: npm
- name: Cache npm dependencies
uses: actions/cache@v4
id: cache-node-modules
with:
path: node_modules
key: ${{ runner.os }}-node-${{ hashFiles('package-lock.json') }}
- name: Install npm dependencies
if: steps.cache-node-modules.outputs.cache-hit != 'true'
run: npm ci --ignore-scripts
- name: Type check
run: npm run type-check
- name: Test
run: npm test
release:
needs:
- test
uses: BitGo/semantic-release-github-actions/.github/workflows/release.yml@v5