Skip to content

fix(entry-query): remove get_all_entries_asc #384

fix(entry-query): remove get_all_entries_asc

fix(entry-query): remove get_all_entries_asc #384

Workflow file for this run

name: Build
on:
pull_request:
push:
branches:
- develop
paths-ignore:
- "**.md"
workflow_dispatch:
permissions:
contents: read
# Cancels all previous workflow runs for the same branch that have not yet completed.
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
name: Build JS assets
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
persist-credentials: false
- name: Setup Node.js
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version: "20"
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Build production assets
run: npm run build