Chore: better documentation #271
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 | |
on: | |
push: | |
branches: | |
- develop | |
- gh-actions | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Setup pnpm | |
uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version-file: .node-version | |
cache: pnpm | |
- name: Install dependencies | |
run: pnpm install | |
# TODO: lint seems to be broken for now | |
# - name: Lint | |
# run: pnpm lint | |
# TODO: type check prevent build for now | |
# - name: Type check | |
# run: pnpm type-check | |
- name: Build | |
run: pnpm build | |
- name: Run tests | |
run: pnpm test | |
- name: Save files | |
uses: actions/upload-artifact@v3 | |
with: | |
name: urbanflo-vite | |
path: | | |
LICENSE | |
README.md | |
dist | |
coverage |