Chore(config): Update editor config #152
Workflow file for this run
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: Build frontend | |
on: [pull_request] | |
jobs: | |
lint: | |
name: Build frontend | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js 15 | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 15 | |
# Create a env file with a Hawk token to send a release info | |
- name: Make envfile with Hawk token | |
uses: ozaytsev86/create-env-file@v1 | |
with: | |
file-name: './www/.env' | |
ENV_HAWK_TOKEN: ${{ secrets.HAWK_TOKEN }} | |
- name: Go to app dir, Install Node.js packages, Build static files | |
run: cd www && yarn && yarn build | |
- uses: EndBug/add-and-commit@v7 | |
with: | |
author_name: github-actions | |
author_email: 41898282+github-actions[bot]@users.noreply.github.com | |
message: 'Build frontend' |