Skip to content

Move from Travis to GitHub Actions #6

Move from Travis to GitHub Actions

Move from Travis to GitHub Actions #6

Workflow file for this run

name: NodeJS with Grunt
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
- name: Build
run: |
npm install
grunt
- name: Push
run: |
git config user.name github-actions
git config user.email [email protected]
git checkout ${{ github.event.pull_request.base.ref || github.head_ref || github.ref_name }}
git commit -a -m "Committed by GitHub Actions [ci skip]"
git push