chore(deps): bump undici from 6.0.1 to 6.6.1 #359
Workflow file for this run
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: Pull Request Test | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18] | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: pnpm/[email protected] | |
with: | |
version: 8.2.0 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'pnpm' | |
- uses: actions/setup-java@v1 | |
with: | |
java-version: '12.X' | |
architecture: x64 | |
- name: Install | |
run: | | |
pnpm i | |
env: | |
CI: true | |
- name: Lint and Compile | |
run: | | |
pnpm lint | |
pnpm --parallel build:type | |
- name: Test | |
run: | | |
pnpm coverage | |
env: | |
CI: true | |
- name: Upload Coverage | |
uses: actions/upload-artifact@master | |
with: | |
name: coverage | |
path: coverage | |