Skip to content

Merge pull request #25 from fiberinc/renovate/node-18.x #270

Merge pull request #25 from fiberinc/renovate/node-18.x

Merge pull request #25 from fiberinc/renovate/node-18.x #270

Workflow file for this run

name: ci
on:
pull_request:
push:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up pnpm 8.x
uses: pnpm/action-setup@v2
with:
version: 8
- uses: actions/setup-node@v3
with:
node-version: 18
cache: pnpm
- run: pnpm install --ignore-scripts
- run: pnpm run lint
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up pnpm 8.x
uses: pnpm/action-setup@v2
with:
version: 8
- uses: actions/setup-node@v3
with:
node-version: 18
cache: pnpm
- run: pnpm i
- run: ALLOWED_REDIRECT_HOST=whatever SESSION_SECRET=whatever pnpm build
- uses: codecov/codecov-action@v3