Skip to content

Bump ip from 2.0.0 to 2.0.1 #19

Bump ip from 2.0.0 to 2.0.1

Bump ip from 2.0.0 to 2.0.1 #19

Workflow file for this run

name: Pull Request
on: pull_request
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: npm ci, build, test and validate
run: |
npm ci
npm run build
npm test
- name: commit
run: |
git config user.email "tiliavir@users.noreply.github.com"
git config user.name "tiliavir"
git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${GITHUB_REPOSITORY}.git
git checkout $GITHUB_HEAD_REF
git commit -am "Rebuild changes"
git push