Skip to content

Reposition baseline of texts to fit center of div counterparts #47

Reposition baseline of texts to fit center of div counterparts

Reposition baseline of texts to fit center of div counterparts #47

Workflow file for this run

# Name of workflow
name: Development workflow
# When workflow is triggered
on:
workflow_dispatch:
push:
branches:
- develop
# Jobs to carry out
jobs:
deploy:
# Operating system to run job on
runs-on: ubuntu-latest
# Steps in job
steps:
# Get code from repo
- name: Checkout code
uses: actions/checkout@v1
# Install NodeJS
- name: Use Node.js 14.x
uses: actions/setup-node@v1
with:
node-version: 14.x
# Run npm install and build on our code
- run: npm install
- run: npm run build
# Deploy to Netlify using our dev secrets
- name: Deploy to netlify
uses: netlify/actions/cli@375963b92b795c7b979927c580dd6f2a65ebcf28
env:
NETLIFY_AUTH_TOKEN: ${{ secrets.RESPVIS_NETLIFY }}
NETLIFY_SITE_ID: ${{ secrets.RESPVIS_NETLIFY_DEVELOP_SITE_ID }}
with:
args: deploy --dir=dist --prod
secrets: '["RESPVIS_NETLIFY", "RESPVIS_NETLIFY_DEVELOP_SITE_ID"]'