Bump ajv from 8.16.0 to 8.17.1 #58
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 version patch | |
npx -c 'echo "$npm_package_version"' | |
echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc | |
npm config set registry ${{ matrix.npm-registry }} | |
npm config set always-auth true | |
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/codacy-coverage-reporter-action@v1.3.0 | |
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 }} |