Skip to content

Add nonstopio.gitconfig #65

Add nonstopio.gitconfig

Add nonstopio.gitconfig #65

Workflow file for this run

# Note: jobs of ci.yml and ci-dispatch.yml should be in sync
name: ci
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
COMMON_SCRIPTS_ROOT: "${{ github.workspace }}"
defaults:
run:
shell: bash
jobs:
ci:
name: CI on ${{ matrix.runner }}
runs-on: ${{ matrix.runner }}
strategy:
fail-fast: false
matrix:
runner: [ ubuntu-latest, macos-latest, windows-latest ]
steps:
- run: git config --global core.autocrlf false
if: runner.os == 'Windows'
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 'lts/*'
if: startsWith(matrix.runner, 'ubuntu')
- run: ./ci/prerequisite.sh
- run: ./ci/ci-common-scripts.sh