Skip to content

Minimalist site appearance #14

Minimalist site appearance

Minimalist site appearance #14

Workflow file for this run

name: PR Checker
on:
pull_request:
branches:
- master
jobs:
check-types:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Read .nvmrc
id: node_version
run: echo ::set-output name=NODE_VERSION::$(cat .nvmrc)
- name: Setup node
uses: actions/setup-node@v1
with:
node-version: ${{ steps.node_version.outputs.NODE_VERSION }}
- run: yarn install --frozen-lockfile
- run: yarn check-types
- name: Dry run the deployment
uses: meese-enterprises/gatsby-publish-without-jekyll@v2
with:
access-token: ${{ secrets.GH_ACCESS_TOKEN }}
deploy-branch: gh-pages
skip-publish: true
env:
CONTENTFUL_ACCESS_TOKEN: ${{secrets.CONTENTFUL_ACCESS_TOKEN}}
CONTENTFUL_SPACE_ID: ${{secrets.CONTENTFUL_SPACE_ID}}