Skip to content

Update actions/setup-node action to v4 #52

Update actions/setup-node action to v4

Update actions/setup-node action to v4 #52

# IMPORTANT NOTE/WARNING!
# Do not make changes to this file, your changes will be overwritten.
#
# This file is automagically generated from:
# - .github/templates/release.yml.erb
# - Templates contained in the smartlyio/github-actions-templates repository
#
# This file can be updated by editing the template file, and running `devbox render workflows`
name: Build and release the action
on:
push:
branches: [master]
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Set Node.js 16.x
uses: actions/setup-node@v4
with:
node-version: 16.x
- name: "Install"
run: |
npm install
- name: "Prettier"
run: |
npm run format-check
- name: "build"
run: |
npm run package
release:
runs-on: ubuntu-22.04
name: "Build and release action"
needs: [build]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
persist-credentials: true
- name: Configure git
uses: smartlyio/github-actions@git-init-userinfo-v1
- name: Release flow
uses: smartlyio/github-actions@release-action-node-v1
with:
token: "${{ secrets.GITHUB_TOKEN }}"