Update dependency @sveltejs/kit to v2.12.0 #185
Workflow file for this run
This file contains 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: test | |
on: | |
push: | |
branches-ignore: ['main'] | |
jobs: | |
test: | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
- name: node 20 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: build | |
env: | |
NODE_ENV: development | |
run: | | |
npm ci && npm run build | |
- name: check | |
run: | | |
npm run check | |
- name: lint | |
run: | | |
npm run lint | |
- name: Approve PR | |
if: github.actor == 'renovate[bot]' | |
run: gh pr review ${{ github.event.pull_request.number }} --approve | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Merge PR | |
if: github.actor == 'renovate[bot]' | |
run: gh pr merge ${{ github.event.pull_request.number }} --merge | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |