This repository has been archived by the owner on Feb 20, 2024. It is now read-only.
chore: tsd-lite
is deprecated
#1221
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: node-ci | |
on: | |
push: | |
branches: | |
- main | |
- renovate/** | |
pull_request: | |
branches: | |
- main | |
jobs: | |
prepare-yarn-cache: | |
name: Prepare Yarn Cache | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | |
- uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 # v4 | |
with: | |
node-version: lts/* | |
cache: yarn | |
- run: yarn install | |
lint: | |
name: Lint | |
needs: prepare-yarn-cache | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | |
- uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 # v4 | |
with: | |
node-version: lts/* | |
cache: yarn | |
- run: yarn install | |
- run: yarn lint:cspell | |
- run: yarn lint:eslint | |
- run: yarn lint:prettier --no-write --check | |
test-node: | |
name: Test on Node.js v${{ matrix.node-version }} | |
needs: prepare-yarn-cache | |
strategy: | |
fail-fast: false | |
matrix: | |
node-version: [16.x, 18.x, 20.x] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 # v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: yarn | |
- run: yarn install | |
- run: yarn build | |
- run: yarn test | |
test-os: | |
name: Test on ${{ matrix.os }} using Node.js LTS | |
needs: prepare-yarn-cache | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, windows-latest, macOS-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | |
- uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 # v4 | |
with: | |
node-version: lts/* | |
cache: yarn | |
- run: yarn install | |
- run: yarn build | |
- run: yarn test |