Skip to content

Commit

Permalink
ci[typing-app]: new workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
h-takeyeah committed Mar 6, 2024
1 parent 1ceda35 commit 40f1fea
Showing 1 changed file with 57 additions and 0 deletions.
57 changes: 57 additions & 0 deletions .github/workflows/nodejsci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
name: CI (typing-app)

on:
push:
branches:
- develop
- main
pull_request:
branches:
- develop
- main
paths:
- "typing-app/**"

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

0 comments on commit 40f1fea

Please sign in to comment.