Skip to content

fix(first-section): image lazy loading #27

fix(first-section): image lazy loading

fix(first-section): image lazy loading #27

Workflow file for this run

name: main
on:
push:
branches: [main]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: 20.x
- name: NPM install and build
run: |
npm install
npm run build
deploy:
name: Deploy
needs: [build]
runs-on: ubuntu-latest
steps:
- name: Deploy to production
uses: johnbeynon/render-deploy-action@v0.0.8
with:
service-id: ${{ secrets.SERVICE_ID }}
api-key: ${{ secrets.RENDER_API_KEY }}