Skip to content

bump @linearb/gitstream-core to 2.1.213 (#417) #588

bump @linearb/gitstream-core to 2.1.213 (#417)

bump @linearb/gitstream-core to 2.1.213 (#417) #588

Workflow file for this run

name: Continuous Integration
on:
pull_request:
branches:
- develop
push:
branches:
- develop
permissions:
contents: read
jobs:
test-typescript:
name: TypeScript Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v5
with:
node-version-file: .nvmrc
cache: npm
- name: Init npmrc
run: |
curl -H "X-JFrog-Art-API: ${{ secrets.ARTIFACTORY_API_KEY }}" https://linearb.jfrog.io/linearb/api/npm/npm-local/auth/linearb >> .npmrc
- name: Install Dependencies
run: npm ci
- name: Check Format
run: npm run format:check
- name: Lint
run: npm run lint
- name: Test
run: npm run test