/
githubmirror
/
eslint-plugin
Обзор
Документация
Войти
/
githubmirror
/
eslint-plugin
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
.github/workflows/publish.yml
28 строк
732 B
Johannes Theiner
release?
17 апр 2026, 00:39
17 апр 2026, 00:39
e2c8eab
Код
Авторство
О чём код?
name: Publish Package to npmjs on: release: types: [published] permissions: id-token: write # Required for OIDC contents: read jobs: build: runs-on: ubuntu-latest permissions: contents: read id-token: write steps: - uses: actions/checkout@v4 # Setup .npmrc file to publish to npm - uses: actions/setup-node@v6 with: node-version: "24" registry-url: "https://registry.npmjs.org" - run: npm ci - run: npm run build - run: npm test - run: npm run check:eslint-docs - run: npm publish --provenance --access public