Skip to content

Commit

Permalink
feat: test
Browse files Browse the repository at this point in the history
  • Loading branch information
crazyair committed Mar 20, 2024
1 parent ab8d017 commit a5191e7
Showing 1 changed file with 29 additions and 2 deletions.
31 changes: 29 additions & 2 deletions .github/workflows/demo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,16 @@ name: image-preview
on: [push, pull_request]

jobs:
image-preview-2:
name: image-preview-3
setup:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4

- uses: actions/setup-node@v4
with:
node-version: 18

- name: cache package-lock.json
uses: actions/cache@v4
with:
Expand All @@ -15,6 +21,27 @@ jobs:

- name: create package-lock.json
run: npm i --package-lock-only --ignore-scripts

- name: hack for single file
run: |
if [ ! -d "package-temp-dir" ]; then
mkdir package-temp-dir
fi
cp package-lock.json package-temp-dir
- name: cache node_modules
id: node_modules_cache_id
uses: actions/cache@v4
with:
path: node_modules
key: node_modules-${{ hashFiles('**/package-temp-dir/package-lock.json') }}

- name: install
if: steps.node_modules_cache_id.outputs.cache-hit != 'true'
run: npm ci
image-preview-2:
name: image-preview-3
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: image-preview-4
Expand Down

0 comments on commit a5191e7

Please sign in to comment.