Release v4.14.0 #296
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: Frontend | |
| on: | |
| push: | |
| paths-ignore: | |
| - 'docs/**' | |
| jobs: | |
| mix: | |
| runs-on: ${{ matrix.os }} | |
| timeout-minutes: 10 | |
| env: | |
| CI: true | |
| strategy: | |
| matrix: | |
| node-version: [16.x, 18.x, 20.x, 22.x] | |
| os: [ubuntu-latest, windows-latest, macos-latest] | |
| name: Mix ${{ matrix.os }} + node ${{ matrix.node-version }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@master | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: Configure Mix | |
| run: | | |
| cp tests/frontend/package.mix.json ./package.json | |
| cp tests/frontend/appshell.mix.js ./ | |
| cp tests/frontend/print.mix.js ./ | |
| - name: Install Dependencies | |
| run: npm i | |
| - name: Theme Build | |
| run: npm run appshell | |
| - name: Print Build | |
| run: npm run print | |
| vite: | |
| runs-on: ${{ matrix.os }} | |
| timeout-minutes: 10 | |
| env: | |
| CI: true | |
| strategy: | |
| matrix: | |
| node-version: [18.x, 20.x, 22.x] | |
| os: [ubuntu-latest, windows-latest, macos-latest] | |
| name: Vite ${{ matrix.os }} + node ${{ matrix.node-version }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@master | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: Configure Vite | |
| run: | | |
| cp tests/frontend/package.vite.json ./package.json | |
| cp tests/frontend/vite.config.js ./ | |
| - name: Install Dependencies | |
| run: npm i | |
| - name: Theme Build | |
| run: npm run build |