Skip to content

Move from Travis to GitHub Actions #4

Move from Travis to GitHub Actions

Move from Travis to GitHub Actions #4

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 add .
git commit -a -m "Committed by GitHub Actions [ci skip]"
git push