build(deps): bump next from 14.2.21 to 15.4.6 in /media #485
Workflow file for this run
  
    
      This file contains hidden or 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: Smoke Test | |
| on: | |
| push: | |
| branches: [master] | |
| pull_request: | |
| branches: [master] | |
| jobs: | |
| smoke-test-macos: | |
| runs-on: macOS-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v1 | |
| with: | |
| node-version: "20" | |
| - name: Install Yarn | |
| run: npm install --global yarn | |
| - name: Install Dependencies | |
| run: yarn install | |
| - name: Install Dependencies Media | |
| run: cd media && yarn install | |
| - name: Run Smoke Test | |
| run: npm run test | |
| smoke-test-windows: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v1 | |
| with: | |
| node-version: "20" | |
| - name: Install Yarn | |
| run: npm install --global yarn | |
| - name: Install Dependencies | |
| run: yarn install | |
| - name: Install Dependencies Media | |
| run: cd media && yarn install | |
| - name: Run Smoke Test | |
| run: npm run test |