Skip to content

Create funding.json #659

Create funding.json

Create funding.json #659

Workflow file for this run

name: ci
on:
push:
branches:
- main
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- uses: actions/setup-node@v4
with:
node-version: 18.x
- run: corepack enable
- run: corepack prepare
- run: yarn install
# make sure types are generated before linting
- run: yarn astro sync
- run: yarn lint
- run: yarn build
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}