Merge pull request #1910 from vinayakkulkarni/dependabot/npm_and_yarn⦠#4433
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 | |
- legacy | |
pull_request: | |
branches: | |
- main | |
- legacy | |
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 |