Skip to content

Update playground echo endpoint description #810

Update playground echo endpoint description

Update playground echo endpoint description #810

Workflow file for this run

name: Build and deploy
on:
push:
branches:
- main
permissions:
contents: read
jobs:
deploy:
runs-on: ubuntu-latest
env:
FIREBASE_TOKEN: ${{secrets.FIREBASE_TOKEN}}
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- name: Use Node.js
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
with:
node-version: "22.x"
package-manager-cache: false
- uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
id: cache-modules
with:
path: "**/node_modules"
key: ${{ runner.os }}-modules-${{ hashFiles('**/package-lock.json') }}
- name: Install dependencies
if: steps.cache-modules.outputs.cache-hit != 'true'
run: |
npm ci
- name: Build and deploy
run: |
npm run deploy