Skip to content

disabled button styling #11

disabled button styling

disabled button styling #11

Workflow file for this run

name: main
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: "20"
cache: "npm"
- name: Install dependencies
run: npm install
- name: Run tests
run: npm run test
- name: Run lint
run: npm run lint
- name: Deploy to production
uses: johnbeynon/render-deploy-action@master
with:
service-id: ${{ secrets.RENDER_COM_SERVICE_ID }}
api-key: ${{ secrets.RENDER_COM_API_KEY }}
wait-for-success: true