Skip to content

Ruby in terminal

Ruby in terminal #88

Workflow file for this run

name: Build and Deploy
on:
push:
branches:
- main
pull_request:
jobs:
build-and-deploy:
runs-on: ubuntu-latest
concurrency: ci-${{ github.ref }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 18.12
cache: npm
- run: |
npm install
npm run lint
npm run build
- uses: JamesIves/github-pages-deploy-action@v4
if: github.ref == 'refs/heads/main'
with:
branch: gh-pages
folder: dist