Updated TypeScript types style #344
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: ~result-format Node.js CI | |
on: | |
push: | |
branches: '**' | |
tags-ignore: '**' | |
pull_request: | |
branches: '**' | |
defaults: | |
run: | |
working-directory: packages/~result-format | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '22' | |
- run: | | |
npm install --prefix ../.. | |
npm run lint | |
test: | |
name: test (Node.js ${{ matrix.node-version }}) | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: ['14', '16', '18', '20', '22'] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- run: | | |
npm install | |
npm test | |
prepare-legacy-test: | |
name: prepare legacy test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '22' | |
- run: | | |
npm install --prefix ../.. | |
npm run prepare-legacy-test | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: node-legacy | |
path: packages/~result-format/test/node-legacy | |
legacy-test: | |
name: legacy test (Node.js ${{ matrix.node-version }}) | |
needs: prepare-legacy-test | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: ['0.10', '0.12', '4', '6.0', '6', '8', '10', '12'] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- uses: actions/download-artifact@v4 | |
with: | |
name: node-legacy | |
path: packages/~result-format/test/node-legacy | |
- run: npm run legacy-test |