Skip to content

Added npm cache

Added npm cache #32

name: npm-dependency-duplications test
on:
pull_request:
push:
branches:
- master
paths:
- npm-dependency-duplications
workflow_dispatch:
jobs:
units:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:

Check failure on line 18 in .github/workflows/check_dependency_duplications.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/check_dependency_duplications.yml

Invalid workflow file

You have an error in your yaml syntax on line 18
node-version: 20
cache: 'npm'
cache-dependency-path:
'./actions/npm-dependency-duplications/package-lock.json'
'./actions/npm-dependency-vulnerabilities/package-lock.json'
- name: Run tests
working-directory: ./actions/npm-dependency-duplications
run: |
npm ci
npm run test
check-dist:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
cache-dependency-path:
'./actions/npm-dependency-duplications/package-lock.json'
'./actions/npm-dependency-vulnerabilities/package-lock.json'
- name: Install dependencies and build
working-directory: ./actions/npm-dependency-duplications
run: |
npm ci
npm run prepare
- name: Compare the expected and actual dist/ directories
working-directory: ./actions/npm-dependency-duplications
run: |
if [ "$(git diff --ignore-space-at-eol dist/ | wc -l)" -gt "0" ]; then
echo "Detected uncommitted changes after build. See status below:"
git diff
exit 1
fi
id: diff
# If index.js was different from expected, upload the expected version as an artifact
- uses: actions/upload-artifact@v4
if: ${{ failure() && steps.diff.conclusion == 'failure' }}
with:
name: dist
path: actions/npm-dependency-duplications/dist/
# test action works running from the graph
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./actions/npm-dependency-duplications