5.0.1 #69
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: Test | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 6 | |
strategy: | |
matrix: | |
node-version: [18.x] # 14 | |
os: [ubuntu-latest] # mac | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install pnpm | |
uses: pnpm/[email protected] | |
with: | |
version: 6.23.5 | |
- name: Set node version to ${{ matrix.node_version }} | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node_version }} | |
cache: "pnpm" | |
- name: Install | |
run: pnpm i | |
- name: Build | |
run: pnpm run build | |
- name: Test | |
run: | | |
cd test/basic | |
pnpm run test:ci | |
- name: Lint | |
run: pnpm run lint --if-present |