Raw
1 name: Deploy
2
3 on: push
4
5 jobs:
6 build:
7 runs-on: ubuntu-latest
8 steps:
9 - name: Checkout
10 uses: actions/checkout@v3
11 - name: Set the correct Node version using nvm
12 shell: bash -l {0}
13 run: nvm install
14 - name: Install Dependencies
15 run: npm install
16 - name: Build
17 run: npm run build