This repository has been archived by the owner on May 22, 2024. It is now read-only.
chore(deps): update dependency @types/node to v20.12.11 (#1741) #5646
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
# Ensure GitHub actions are not run twice for same commits | |
push: | |
branches: [main] | |
tags: ['*'] | |
pull_request: | |
types: [opened, synchronize, reopened] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Git checkout | |
uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: lts/* | |
cache: 'npm' | |
- name: Install dependencies | |
run: npm ci | |
- name: Linting | |
run: npm run format:ci | |
build: | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 30 | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macOS-latest, windows-latest] | |
node-version: [14.18.0, '*'] | |
exclude: | |
- os: macOS-latest | |
node-version: 14.18.0 | |
- os: windows-latest | |
node-version: 14.18.0 | |
fail-fast: false | |
steps: | |
# Increasing the maximum number of open files. See: | |
# https://github.com/actions/virtual-environments/issues/268 | |
- name: Increase open file limit | |
run: sudo ulimit -Sn 65536 | |
if: "${{ matrix.os == 'macOS-latest' }}" | |
- run: git config --global core.symlinks true | |
- name: Git checkout | |
uses: actions/checkout@v4 | |
- name: Node.js ${{ matrix.node }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'npm' | |
check-latest: true | |
- name: Install dependencies | |
run: npm ci | |
- name: Tests with coverage | |
if: "${{ matrix.node-version == '*' }}" | |
run: npm run test:ci -- --coverage | |
env: | |
ZISI_TEST_RATE_LIMIT: 3 | |
- name: Tests | |
if: "${{ matrix.node-version != '*' }}" | |
run: npm run test:ci | |
env: | |
ZISI_TEST_RATE_LIMIT: 3 | |
- name: Get test coverage flags | |
if: "${{ matrix.node-version == '*' }}" | |
id: test-coverage-flags | |
run: |- | |
os=${{ matrix.os }} | |
node=$(node --version) | |
echo "os=${os/-latest/}" >> $GITHUB_OUTPUT | |
echo "node=node_${node/.*.*/}" >> $GITHUB_OUTPUT | |
shell: bash | |
- uses: codecov/codecov-action@v3 | |
if: "${{ matrix.node-version == '*' }}" | |
with: | |
flags: ${{ steps.test-coverage-flags.outputs.os }},${{ steps.test-coverage-flags.outputs.node }} |