Skip to content

chore: first ci

chore: first ci #6

Workflow file for this run

name: CI
on:
- push
- pull_request
jobs:
quality-checks:
name: Quality Checks
runs-on: ubuntu-latest
steps:
- uses: actions/setup-node@v4
with:
node-version: 20
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
run_install: false
version: 9
- uses: actions/checkout@v4
with:
ref: new-structure
repository: fireproof-storage/fireproof
path: ./fireproof
- name: build-fireproof-package
working-directory: ./fireproof
run: |
pnpm install
pnpm run build
- uses: actions/checkout@v4
with:
path: ./connector
- name: install
working-directory: ./connector
run: |
pnpm install -f ../fireproof/dist/fireproof-core/fireproof-core-*.tgz
pnpm install
- name: format-check
working-directory: ./connector
run: pnpm run format --check
- name: lint
working-directory: ./connector
run: pnpm run lint
- name: build
working-directory: ./connector
run: pnpm run build
# - name: smoke
# working-directory: ./connector
# run: pnpm run smoke
# - name: test
# working-directory: ./connector
# run: pnpm run test