Skip to content

ci: automated release workflow (semantic-release + OIDC trusted publishing) #129

ci: automated release workflow (semantic-release + OIDC trusted publishing)

ci: automated release workflow (semantic-release + OIDC trusted publishing) #129

Workflow file for this run

name: Simple CI
on: [pull_request]
jobs:
run-ci:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: ./.github/actions/setup-node
- run: npm install
- name: Check if the git repository is clean
run: $(exit $(git status --porcelain --untracked-files=no | head -255 | wc -l)) || (echo "Dirty git tree"; git diff; exit 1)
- run: npm run lint