Skip to content

build(deps-dev): bump @types/current-git-branch from 1.1.3 to 1.1.4 #415

build(deps-dev): bump @types/current-git-branch from 1.1.3 to 1.1.4

build(deps-dev): bump @types/current-git-branch from 1.1.3 to 1.1.4 #415

name: Build + test (no download)
on:
push:
branches:
- main
pull_request:
branches: [main]
jobs:
build-and-test-osx:
runs-on: macos-latest
strategy:
matrix:
node-version: [16.x, 18.x, 20.x]
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: ci/build-and-test-pr.sh
env:
CASE_publish: false
NODE_VERSION: ${{ matrix.node-version }}
FORCE_COLOR: true
build-and-test-ubuntu:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x, 20.x]
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: ci/build-and-test-pr.sh
env:
CASE_publish: false
NODE_VERSION: ${{ matrix.node-version }}
FORCE_COLOR: true
build-and-test-windows:
runs-on: windows-latest
strategy:
matrix:
node-version: [16.x, 18.x, 20.x]
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: bash ci/build-and-test-pr.sh
shell: bash
env:
CASE_publish: false
NODE_VERSION: ${{ matrix.node-version }}
FORCE_COLOR: true