Bump ip from 2.0.0 to 2.0.1 #19
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: 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 |