chore(deps-dev): Update shipjs requirement from ^0.26.3 to ^0.26.4 in the npm-development group #4049
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: 'Continuous Integration' | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
permissions: | |
checks: write | |
contents: read | |
jobs: | |
ci: | |
name: 'CI' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository 🎉 | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
- name: Setup bun env 🐰 | |
uses: oven-sh/setup-bun@v1 | |
with: | |
bun-version: latest | |
- name: Install dependencies 🚀 | |
run: bun install | |
- name: Run linter(s) 👀 | |
uses: wearerequired/lint-action@v2 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
continue_on_error: false | |
git_name: github-actions[bot] | |
git_email: github-actions[bot]@users.noreply.github.com | |
auto_fix: false | |
neutral_check_on_warning: true | |
stylelint: false | |
stylelint_extensions: css,scss,vue | |
eslint: true | |
eslint_extensions: js,ts,vue | |
prettier: true | |
prettier_extensions: js,ts,vue | |
- name: Build the package 🎉 | |
run: bun run build |