Skip to content

Generate treemap charts #26

Generate treemap charts

Generate treemap charts #26

Workflow file for this run

name: CI
on:
push:
branches: [main]
paths-ignore:
- '*.md'
pull_request:
branches: [main]
paths-ignore:
- '*.md'
permissions:
contents: read # for checkout repository
actions: read # for fetching base branch bundle stats
pull-requests: write # for comments
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20.x
cache: npm
- run: npm ci
- run: npm run check
- run: npm run test:run
- run: npm run build
- name: Check uncommited file
run: |
git_diff_stat=$(git diff --stat)
if [[ $git_diff_stat != '' ]]; then
echo "Uncommitted file found. Ensure you have run tests and committed all changes."
echo ""
echo $git_diff_stat
exit 1
else
echo 'clean'
fi
- name: Analyze esbuild bundle size
uses: exoego/esbuild-bundle-analyzer@${{ github.ref_name }}

Check failure on line 43 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 43, Col: 15): Unrecognized named-value: 'github'. Located at position 1 within expression: github.ref_name
with:
metafiles: "tmp/meta.json"
- uses: actions/upload-artifact@v4
with:
name: dist
path: dist
- uses: actions/upload-artifact@v4
with:
name: action.yaml
path: action.yaml