Skip to content

Commit

Permalink
ci: remove cache to speed up
Browse files Browse the repository at this point in the history
  • Loading branch information
jef authored Jan 31, 2025
1 parent 644ad53 commit 3e50428
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,20 +9,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 16.18.0
- name: Cache node modules
id: cache_node_modules
uses: actions/cache@v3
with:
path: node_modules
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: ${{ runner.os }}-node-
- name: Install Dependencies
if: steps.cache_node_modules.outputs.cache-hit != 'true'
run: npm ci
- name: Compile TypeScript
run: npm run compile
Expand Down

0 comments on commit 3e50428

Please sign in to comment.