Fix build #201
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 | |
# Run on pushes to main or PRs | |
on: | |
# Pull request hook without any config. Launches for every pull request | |
pull_request: | |
# Launches for pushes to main or dev | |
push: | |
branches: | |
- main | |
# Launches build when release is published | |
release: | |
types: [published] | |
jobs: | |
build: | |
name: Build Package | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
- name: Install dependencies | |
run: npm install | |
- name: Build app | |
run: yarn build |