Skip to content

insert the logo in the homepage #13

insert the logo in the homepage

insert the logo in the homepage #13

Workflow file for this run

name: zen-site-next CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Enable Corepack
run: corepack enable
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: "18.x"
cache: "yarn"
- run: yarn install --immutable
- run: yarn test
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}