Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork7
feat(magic-redirect): migrate magic-redirect to codemod.com#205
This file contains hidden or 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: | |
| push: | |
| branches: | |
| -main | |
| -develop | |
| paths-ignore: | |
| -'*.md' | |
| pull_request: | |
| paths-ignore: | |
| -'*.md' | |
| # Cancel in progress workflows | |
| # in the scenario where we already had a run going for that PR/branch/tag but then triggered a new run | |
| concurrency: | |
| group:"${{ github.workflow }} ✨ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}" | |
| cancel-in-progress:true | |
| permissions: | |
| contents:read | |
| jobs: | |
| lint: | |
| name:Lint | |
| runs-on:ubuntu-latest | |
| steps: | |
| -uses:actions/checkout@v4 | |
| -name:Setup Node.js {{ matrix.node-version }} | |
| uses:actions/setup-node@v6 | |
| with: | |
| node-version:'lts/*' | |
| -name:Install dependencies | |
| run:npm install --ignore-scripts --only=dev | |
| -name:Run lint | |
| run:npm run lint | |
| test: | |
| strategy: | |
| fail-fast:false | |
| matrix: | |
| os:[ubuntu-latest, windows-latest, macos-latest] | |
| node-version:[18, 19, 20, 21, 22, 23] | |
| # Node.js release schedule: https://nodejs.org/en/about/releases/ | |
| name:Node.js ${{ matrix.node-version }} - ${{matrix.os}} | |
| runs-on:${{ matrix.os }} | |
| steps: | |
| -uses:actions/checkout@v4 | |
| with: | |
| persist-credentials:false | |
| -name:Setup Node.js ${{ matrix.node-version }} | |
| uses:actions/setup-node@v6 | |
| with: | |
| node-version:${{ matrix.node-version }} | |
| -name:Configure npm loglevel | |
| run:| | |
| npm config set loglevel error | |
| shell:bash | |
| -name:Install dependencies | |
| run:npm install | |
| -name:Output Node and NPM versions | |
| run:| | |
| echo "Node.js version: $(node -v)" | |
| echo "NPM version: $(npm -v)" | |
| -name:Run tests-legacy cli | |
| shell:bash | |
| run:| | |
| npm run test-legacy:ci | |
| -name:Run test | |
| shell:bash | |
| run:| | |
| npm run test |