feat: new components #215
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: CI | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
permissions: | |
pull-requests: write | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build-test: | |
name: π Main | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: pnpm/[email protected] | |
- run: corepack enable | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '18' | |
cache: pnpm | |
- name: π¦ Install deps (with cache) | |
run: pnpm install | |
- name: π Lint | |
run: pnpm lint | |
- name: π Build | |
run: pnpm build | |
# - name: π§ͺ Test | |
# run: pnpm test | |
# - name: π§ͺ Test with coverage | |
# run: pnpm coverage | |
# - name: π Upload coverage | |
# if: always() | |
# uses: davelosert/vitest-coverage-report-action@v1 |