Bump ip #419
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: 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 | |
- run: npm ci | |
- run: npm run lint | |
test: | |
needs: lint | |
strategy: | |
matrix: | |
os: | |
- ubuntu-latest | |
node: | |
- 18 | |
- node | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node }} | |
- run: which npx | |
# don't accidentally use the global npx | |
- run: rm $(which npx) | |
# sometimes this exists | |
- run: rm /usr/local/bin/npx || true | |
# test that we can't find it | |
- run: "! which npx" | |
- run: npm ci | |
- run: npm test | |
env: | |
DEBUG: create-react-app-updater,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: kellyselden/ember-cli-update-action@v6 | |
with: | |
autofix_command: npm run lint -- --fix | |
ignore_to: true |