fix(deps): update dependency react-markdown to v9 #1076
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: build | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.nvmrc' | |
# Install dependencies | |
- run: npm ci | |
# Build and output webpack stats to dist/webpack-stats.json | |
- run: npm run build | |
# Send webpack stats and build information to RelativeCI | |
- name: Send webpack stats to RelativeCI | |
uses: relative-ci/[email protected] | |
with: | |
webpackStatsFile: ./dist/webpack-stats.json | |
key: ${{ secrets.RELATIVE_CI_KEY }} | |
- name: Archive production artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: test-artifacts | |
path: | | |
dist/webpack-stats.json |