v2.5.0 #277
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: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 14 | |
- name: Cache Yarn dependencies | |
uses: actions/cache@v2 | |
with: | |
path: | | |
node_modules | |
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} | |
restore-keys: | | |
${{ runner.os }}-yarn- | |
- name: Install dependencies | |
run: yarn install | |
- name: Build app | |
run: yarn build |