Skip to content

Removed sync command #376

Removed sync command

Removed sync command #376

Workflow file for this run

name: Validate
on:
pull_request:
branches:
- main
jobs:
lint:
name: Linting
runs-on: ubuntu-latest
steps:
- name: Code Checkout
uses: actions/[email protected]
- name: Set up Bun
uses: oven-sh/setup-bun@v1
with:
bun-version: 1.1.4
- name: Install Dependencies
if: steps.cache-node-modules.outputs.cache-hit != 'true'
run: bun install --frozen-lockfile
- name: Build
run: bun run build
- name: Code Linting
run: bun run --bun lint
test:
name: Testing
runs-on: ubuntu-latest
steps:
- name: Code Checkout
uses: actions/[email protected]
- name: Set up Bun
uses: oven-sh/setup-bun@v1
with:
bun-version: 1.1.4
- name: Install Dependencies
if: steps.cache-node-modules.outputs.cache-hit != 'true'
run: bun install --frozen-lockfile
- name: Build
run: bun run build
- name: Testing
run: bun test