chore(deps): update dependency @types/node to v16.18.126 #1699
This file contains hidden or 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: Continuous Integration | |
| on: [push, pull_request] | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@master | |
| - uses: actions/setup-node@master | |
| with: | |
| node-version: 20 | |
| - uses: pnpm/action-setup@v2 | |
| with: | |
| version: 9 | |
| - name: Install dependencies | |
| run: pnpm i --frozen-lockfile | |
| - name: lint | |
| run: pnpm lint | |
| tsc: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@master | |
| - uses: actions/setup-node@master | |
| with: | |
| node-version: 20 | |
| - uses: pnpm/action-setup@v2 | |
| with: | |
| version: 9 | |
| - name: Install dependencies | |
| run: pnpm i --frozen-lockfile | |
| - name: tsc | |
| run: pnpm tsc | |
| # test: | |
| # runs-on: ubuntu-latest | |
| # steps: | |
| # - uses: actions/checkout@master | |
| # - uses: actions/setup-node@master | |
| # with: | |
| # node-version: 20 | |
| # - name: yarn | |
| # run: yarn --frozen-lockfile | |
| # - name: test | |
| # run: | | |
| # export DISPLAY=:99 | |
| # Xvfb -ac :99 -screen 0 2080x1024x24 >/dev/null 2>&1 & | |
| # yarn run test |