Skip to content

GitHub Pages for examples without backend #3

GitHub Pages for examples without backend

GitHub Pages for examples without backend #3

Workflow file for this run

name: Build, Lint and Test
on:
push:
branches:
- 'main'
tags-ignore:
- '**'
pull_request:
branches:
- main
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Volta
uses: volta-cli/action@v4
- name: Use pnpm
uses: pnpm/action-setup@v3
with:
version: 9
- name: Install
shell: bash
run: |
npm ci
- name: Build
shell: bash
run: |
npm run report:versions
npm run build
- name: Lint
shell: bash
run: |
npm run report:versions
npm run lint
- name: Test
shell: bash
run: |
npm run report:versions
npm run test:run