Skip to content

chore: add workflow files for dispatch condition #2

chore: add workflow files for dispatch condition

chore: add workflow files for dispatch condition #2

Workflow file for this run

name: CI (typing-app)
on:
push:
branches:
- "ci/**"
- develop
- main
paths:
- .github/workflows/nodejsci.yml
- "typing-app/**"
pull_request:
branches:
- "ci/**"
- develop
- main
paths:
- .github/workflows/nodejsci.yml
- "typing-app/**"
workflow_dispatch:
defaults:
run:
working-directory: ./typing-app
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
id: cache
with:
path: |
${{ github.workspace }}/typing-app/node_modules
${{ github.workspace }}/typing-app/.next/cache
key: ${{ runner.os }}-bun-cache-${{ hashFiles('typing-app/bun.lockb') }}
restore-keys: ${{ runner.os }}-bun-cache-
- uses: oven-sh/setup-bun@v1
if: steps.cache.outputs.cache-hit != 'true'
with:
bun-version: latest
- name: Install dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: bun install
- name: Try to build
run: npm run build
lint:
name: Lint
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/checkout@v4
- uses: actions/cache/restore@v4
with:
path: |
${{ github.workspace }}/typing-app/node_modules
${{ github.workspace }}/typing-app/.next/cache
key: ${{ runner.os }}-bun-cache-${{ hashFiles('typing-app/bun.lockb') }}
fail-on-cache-miss: true
- name: Run lint
run: npm run lint