Skip to content

chore(deps): bump braces from 3.0.2 to 3.0.3 #460

chore(deps): bump braces from 3.0.2 to 3.0.3

chore(deps): bump braces from 3.0.2 to 3.0.3 #460

Workflow file for this run

name: Test-Build ModuleSite
# Trigger the workflow on all pull requests
on: pull_request
env:
GITHUB_TOKEN: ${{ secrets.MODULE_FETCH_GITHUB_TOKEN }}
jobs:
gatsby-build:
runs-on: ubuntu-latest
steps:
- name: Checkout PR
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: '18'
# Globally caches yarn dependencies
cache: 'yarn'
- name: Install Project Dependencies
run: yarn install --frozen-lockfile --immutable
- name: Build ModuleSite
run: yarn run build
gatsby-build-mutable-lockfile:
runs-on: ubuntu-latest
steps:
- name: Checkout PR
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: '18'
# Globally caches yarn dependencies
cache: 'yarn'
- name: Install Project Dependencies
run: yarn install
- name: Build ModuleSite
run: yarn run build