Updated button border color opacity #574
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
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions | |
name: push-build | |
# This workflow can be used for pushing to the production server and will only be ran when code is pushed to the main branch | |
on: | |
push: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: node:16 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Node.js dependencies | |
run: | | |
npm i -g pnpm | |
pnpm i | |
- name: Build App | |
run: pnpm run build | |
- name: Publish Artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: my-artifact | |
path: dist/ |