Merge pull request #1 from Latermedia/PE-656-copy-build-node-updates #3
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: "release" | |
on: | |
push: | |
branches: | |
- '*' | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Node Setup | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '20' | |
- name: Test and prepare distribution | |
run: npm install && npm run all | |
- name: Git Status | |
run: git status |