Skip to content

Speaker Page

Speaker Page #197

Workflow file for this run

name: Validate
on:
workflow_dispatch:
push:
pull_request:
branches:
- '**'
jobs:
validate:
runs-on: ubuntu-latest
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
steps:
- name: Git Checkout
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18.x
cache: 'yarn'
- name: Install Dependencies
run: yarn install --frozen-lockfile
- name: Validate
run: yarn validate