Skip to content

Update actions/setup-node action to v4.4.0 #209

Update actions/setup-node action to v4.4.0

Update actions/setup-node action to v4.4.0 #209

Workflow file for this run

name: "Install and build"
on:
push:
branches:
- develop
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Set up node.
uses: actions/[email protected]
with:
node-version: 17.x
- name: Install and build.
run: |
yarn install
yarn build
env:
CI: true
- name: Deploy!
uses: demurgos/ga-deploy-git@v1
if: ${{ github.event_name == 'push' }}
with:
accessToken: ${{ secrets.PUSH_TOKEN }}
commitEmail: "[email protected]"
commitUser: "Frozzbot"
destBranch: "main"
srcDir: "build"