Bump eslint from 9.6.0 to 9.9.1 #87
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: auto-merge | |
on: | |
pull_request: | |
branches: | |
- develop | |
jobs: | |
auto-merge: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [20.x] | |
npm-registry: ['https://registry.npmjs.org'] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: 'Use Node.js ${{ matrix.node-version }}' | |
uses: actions/setup-node@v1 | |
with: | |
always-auth: true | |
node-version: ${{ matrix.node-version }} | |
- name: 'NPM Test' | |
shell: bash | |
run: | | |
npm install -g gulp-cli gulp@5 | |
echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc | |
npm config set registry ${{ matrix.npm-registry }} | |
sudo mkdir ~/.npm || true | |
sudo chown -R $USER:$GROUP ~/.npm || true | |
sudo chown -R $USER:$GROUP ~/.config || true | |
npm ci | |
npm run build | |
env: | |
NPM_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
- name: 'Report Coverage to Codacy' | |
uses: codacy/[email protected] | |
with: | |
project-token: ${{ secrets.CODACY_PROJECT_TOKEN }} | |
coverage-reports: ./coverage/lcov.info | |
- uses: ahmadnassri/action-dependabot-auto-merge@v2 | |
with: | |
target: minor | |
github-token: ${{ secrets.mytoken }} |