chore(deps-dev): Bump the npm-development group across 1 directory wi… #280
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Github Action CI | |
on: | |
push: | |
paths: | |
- "action/**" | |
- "action.yml" | |
pull_request: | |
paths: | |
- "action/**" | |
- "action.yml" | |
jobs: | |
run-unit-tests: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./action | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/[email protected] | |
with: | |
node-version: "20" | |
- run: npm install | |
- run: npm run lint | |
- run: npm run format:check | |
- run: npm run test | |
- run: npm run package | |
- name: Compare Directories | |
if: github.actor != 'dependabot' | |
id: diff | |
run: | | |
if [ ! -d dist/ ]; then | |
echo "Expected dist/ directory does not exist. See status below:" | |
ls -la ./ | |
exit 1 | |
fi | |
if [ "$(git diff --ignore-space-at-eol --text dist/ | wc -l)" -gt "0" ]; then | |
echo "Detected uncommitted changes after build. See status below:" | |
git diff --ignore-space-at-eol --text dist/ | |
exit 1 | |
fi | |
- if: ${{ failure() && steps.diff.outcome == 'failure' && github.actor != 'dependabot' }} | |
name: Upload Artifact | |
id: upload | |
uses: actions/upload-artifact@v4 | |
with: | |
name: dist | |
path: dist/ |