Bump @mdx-js/loader from 3.0.1 to 3.1.0 in /src #1051
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: NPM Dev site CI/CD | |
on: | |
push: | |
branches: ["dev"] | |
paths: | |
- "src/**" | |
pull_request: | |
branches: ["dev"] | |
paths: | |
- "src/**" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: "src" # Here the path to the folder where package-lock.json is located. | |
strategy: | |
matrix: | |
node-version: [22.x] # [12.x, 14.x, 16.x] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: dev | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- run: npm install | |
- run: npm run build --if-present | |
# - run: npm test |