Vue update #166
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
on: | |
push: | |
branches: [ development, release ] | |
pull_request: | |
branches: [ development, release ] | |
env: | |
NODE_VERSION: '20.x' # set this to the node version to use | |
jobs: | |
build-and-deploy: | |
name: Test, Build and Deploy | |
runs-on: ubuntu-latest | |
environment: production | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js ${{ env.NODE_VERSION }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
- name: Get short commit hash | |
run: | | |
commithash=`git rev-parse --short "$GITHUB_SHA"` | |
echo "gitcommitshort=$commithash" >> $GITHUB_ENV | |
committext=`git log --oneline -n 1` | |
echo "gitcommittext=$committext" >> $GITHUB_ENV | |
- name: npm install, build, and test | |
run: | | |
# disable sourcemap generation to reduce memory usage and save build size | |
echo "GENERATE_SOURCEMAP=false" >> .env | |
# Build and test the project | |
npm install | |
npm run build --if-present --production | |
# need to comment out cypress for now since we don't have a backend it can use for testing - we could potentially | |
# set up a testing service on a dedicated VM | |
#./node_modules/.bin/cypress run | |
# npm run test --if-present | |
# Now take the built item and upload a zip as a release | |
- name: Make zip of build as artifact and for release | |
if: github.ref == 'refs/heads/release' | |
run: | | |
zip -r release-build.zip dist/* | |
- name: Attach artifact | |
uses: actions/upload-artifact@v2 | |
if: github.ref == 'refs/heads/release' | |
with: | |
name: release-build | |
path: dist/* | |
# create the release, attaching the file | |
- name: Release | |
uses: softprops/action-gh-release@v1 | |
if: github.ref == 'refs/heads/release' | |
with: | |
name: "${{ env.gitcommittext }}" | |
body: Automatically generated release on push to release branch. | |
tag_name: "2022dev-${{ env.gitcommitshort }}" | |
files: | | |
release-build.zip | |
env: | |
GITHUB_TOKEN: ${{ secrets.REPO_ACCESS_TOKEN }} |