Github workflow: Upgrade to Node JS 20 (Latest LTS) #71
Workflow file for this run
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, pull_request] | |
jobs: | |
build: | |
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.repository | |
timeout-minutes: 15 | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
adapter: ['react', 'vue2', 'vue3', 'svelte'] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v1 | |
- name: Setup Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 20 | |
- name: Cache node modules | |
uses: actions/cache@v2 | |
with: | |
key: ${{ runner.OS }}-npm-cache-${{ hashFiles('package-lock.json') }} | |
path: | | |
~/.cache | |
node_modules | |
packages/${{ matrix.adapter }}/tests/node_modules | |
- name: Build Inertia | |
run: | | |
npm install | |
cd packages/core && npm run build | |
cd ../${{ matrix.adapter }} && npm run build | |
- name: Build Playground | |
run: | | |
cd playgrounds/${{ matrix.adapter }} && npm run build |