Skip to content

Fetch multiple CMS template pages instead of just the first (#2314) #2016

Fetch multiple CMS template pages instead of just the first (#2314)

Fetch multiple CMS template pages instead of just the first (#2314) #2016

Workflow file for this run

# This Action should run on main branch and verify lint, test, and then publish the version on npm
name: CD
on:
push:
branches:
- main
jobs:
build:
name: FastStore
timeout-minutes: 15
runs-on: ubuntu-latest
# To use Remote Caching, uncomment the next lines and follow the steps below.
env:
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_TEAM: ${{ secrets.TURBO_TEAM }}
steps:
- name: Check out code
uses: actions/checkout@v4
with:
token: ${{ secrets.VTEX_GITHUB_BOT_TOKEN }}
fetch-depth: 2
- name: Setup Node.js environment
uses: actions/setup-node@v4
with:
node-version: 18
cache: 'yarn'
registry-url: 'https://registry.npmjs.org'
- name: Configure CI Git User
run: |
git config user.name vtexgithubbot
git config user.email vtexgithubbot@github.com
- name: Install dependencies
run: yarn
- name: Build
run: yarn build
- name: Size
run: yarn size
- name: Lint
run: yarn lint
- name: Test
run: yarn test
- name: Publish
run: yarn release
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}