Temporarily use PivotQL parser package directly from Github #473
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
# .github/workflows/netlify.yml | |
name: Build and deploy | |
# Controls when the action will run. | |
on: | |
# Triggers the workflow on push or pull request events but only for the master branch | |
push: | |
branches: [ master ] | |
pull_request: | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 # Need tags for git describe | |
- uses: actions/setup-node@v3 | |
with: | |
node-version-file: '.nvmrc' | |
- run: npm ci --legacy-peer-deps && npm run build | |
env: | |
PUBLIC_URL: "/admin/" | |
- run: | | |
mkdir ./tmp | |
mv ./build ./tmp/admin | |
mv ./tmp/admin/_* ./tmp/ | |
- name: Upload build artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: latest-build | |
path: tmp/ |