Skip to content

Merge pull request #61 from eresearchqut/ERP-2590-update-resources #133

Merge pull request #61 from eresearchqut/ERP-2590-update-resources

Merge pull request #61 from eresearchqut/ERP-2590-update-resources #133

Workflow file for this run

name: Build
on:
push:
branches:
- main
pull_request:
jobs:
build:
name: Build, lint, and check formatting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
cache: yarn
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Lint
run: yarn lint
- name: Check formatting
run: yarn format:check
- name: Build website
run: yarn build
- name: Test build storybook
run: yarn build-storybook