chore(deps): bump webpack from 5.88.2 to 5.95.0 #484
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: 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 |