chore: update angle-brackets codemod to use latest version #331
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: CI | |
on: | |
# allow manual running | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- uses: pnpm/action-setup@v4.0.0 | |
with: | |
version: 8.10.2 | |
- run: pnpm install | |
- run: npm run lint:git | |
- run: npm run lint:js | |
test: | |
needs: lint | |
strategy: | |
matrix: | |
os: | |
- ubuntu-latest | |
- macos-latest | |
node: | |
- 18 | |
- '*' | |
exclude: | |
- os: macos-latest | |
node: '*' | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node }} | |
- uses: pnpm/action-setup@v4.0.0 | |
with: | |
version: 8.10.2 | |
- run: pnpm install | |
- run: npm test | |
continue-on-error: ${{ matrix.os == 'macos-latest' }} | |
env: | |
TEST_TYPE: addon | |
DEBUG: ember-cli-update,boilerplate-update,git-diff-apply | |
ember-cli-update: | |
needs: test | |
if: github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.head_ref }} | |
token: ${{ secrets.GitHubToken }} | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- uses: pnpm/action-setup@v4.0.0 | |
with: | |
version: 8.10.2 | |
- uses: kellyselden/ember-cli-update-action@v6 | |
with: | |
autofix_command: npm run lint:js -- --fix | |
ignore_to: true | |
commit_prefix: "chore: " |