Skip to content

ci(release): fixed release config import #2

ci(release): fixed release config import

ci(release): fixed release config import #2

Workflow file for this run

name: Branch validation
on:
push:
branches:
- master
jobs:
install:
name: Branch validation
runs-on: macos-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v3
name: Checkout
with:
ref: ${{github.event.ref}}
fetch-depth: 0
- uses: actions/setup-node@v3
name: Setup node
with:
node-version: 18.14.2
registry-url: https://registry.npmjs.org/
- run: npm i bun -g
name: Install bun
- run: bun install --frozen-lockfile
name: Install dependencies
- run: |
echo "Bun version: $(bun -v)"
echo "NodeJS version: $(node -v)"
echo "NPM version: $(npm -v)"
name: Display versions
- run: bun run type-check
name: Type check code
- run: bun run test
name: Test code
- run: bun run format
name: Format code
- run: bun run lint
name: Lint code