Skip to content

feat: deno updates + compatibility with front - fix #5 #16

feat: deno updates + compatibility with front - fix #5

feat: deno updates + compatibility with front - fix #5 #16

Workflow file for this run

name: Build
on:
push:
branches: [master]
pull_request:
jobs:
prettier:
name: "prettier"
runs-on: ubuntu-latest
strategy:
matrix:
deno-version: [2.7.13]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "24.x"
registry-url: "https://registry.npmjs.org"
- run: yarn install --frozen-lockfile
- name: run prettier checker
run: yarn prettier:check
- name: Use Deno Version ${{ matrix.deno-version }}
uses: denoland/setup-deno@v1
with:
deno-version: ${{ matrix.deno-version }}