Version 0.9.2 #97
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: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
- name: Use Node.js 20 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
cache: pnpm | |
- name: Install | |
run: pnpm install | |
- name: Playwright Install | |
run: npx playwright install | |
- name: Build | |
run: pnpm build | |
- name: Test | |
run: pnpm test | |
# coverage: | |
# runs-on: ubuntu-latest | |
# name: 'Coverage' | |
# steps: | |
# - uses: actions/checkout@v3 | |
# with: | |
# fetch-depth: 0 | |
# - uses: pnpm/action-setup@v2.2.4 | |
# with: | |
# version: 7 | |
# - name: Set node version to 16 | |
# uses: actions/setup-node@v3 | |
# with: | |
# node-version: 16 | |
# cache: pnpm | |
# - name: Install | |
# run: pnpm install | |
# - name: Build | |
# run: pnpm build | |
# - name: Test | |
# run: pnpm coverage | |
# - name: Coveralls | |
# uses: coverallsapp/github-action@master | |
# with: | |
# github-token: ${{ secrets.GITHUB_TOKEN }} | |
lint: | |
runs-on: ubuntu-latest | |
name: 'Lint: node-18, ubuntu-latest' | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
- name: Set node version to 20 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
cache: pnpm | |
- name: Install | |
run: pnpm install | |
- name: Build | |
run: pnpm build | |
- name: Lint | |
run: pnpm lint |