Skip to content

Commit

Permalink
Create test#835.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
aparnajyothi-y authored Nov 22, 2024
1 parent 3928175 commit 6862e65
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/test#835.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Reproduce Cache Miss and Font Awesome Issue

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest

steps:
# Step 1: Checkout the repository
- name: Checkout repository
uses: actions/checkout@v3

# Step 2: Setup Node.js with caching enabled (npm cache)
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'

# Step 3: Install dependencies (will log cache misses)
- name: Install dependencies
run: npm ci --verbose
shell: bash

# Step 4: Run tests (optional step, for example, to check that your app works)
- name: Run tests
run: npm test
shell: bash

0 comments on commit 6862e65

Please sign in to comment.