chore: update deps #72
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: Integrate | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
coding-standards: | |
name: Coding Standards | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up | |
uses: ./.github/actions/setup | |
- name: Run Rome | |
run: pnpm exec biome ci . | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up | |
uses: ./.github/actions/setup | |
- name: Build | |
run: pnpm build | |
# test: | |
# name: Test | |
# runs-on: ubuntu-latest | |
# steps: | |
# - name: Checkout | |
# uses: actions/checkout@v3 | |
# - name: Set up | |
# uses: ./.github/actions/setup | |
# - name: Run Vitest | |
# run: pnpm test |