Skip to content

chore: replace eslint with biome #30

chore: replace eslint with biome

chore: replace eslint with biome #30

Workflow file for this run

name: CI
on:
push:
branches:
- main
jobs:
ship_it:
runs-on: ubuntu-latest
environment: production
steps:
- uses: actions/checkout@v4
with:
fetch-depth: '0'
- uses: actions/setup-node@v4
with:
node-version-file: '.node-version'
cache: 'npm'
- name: Acquire Playwright version
id: playwright-version
run: echo "PLAYWRIGHT_VERSION=$(node -e "console.log(require('./package-lock.json').dependencies['@playwright/test'].version)")" >> $GITHUB_ENV
- name: Cache playwright binaries
uses: actions/cache@v4
id: playwright-cache
with:
path: |
~/.cache/ms-playwright
key: ${{ runner.os }}-playwright-${{ env.PLAYWRIGHT_VERSION }}
- name: 🔨Install Dependencies 🔨
run: sudo apt-get update && sudo apt-get install make
- name: 🚀 Deploy 🚀
run: make deploy
env:
CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}