-
Notifications
You must be signed in to change notification settings - Fork 0
45 lines (36 loc) · 952 Bytes
/
test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name: Run Tests
on:
pull_request:
branches:
- '*'
push:
branches:
- '*'
jobs:
run_tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2.3.4
- name: Setup Next.js Build Cache
uses: actions/cache@v3.2.4
with:
path: ${{ github.workspace }}/.next/cache
key: ${{ runner.os }}-nextjs-${{ hashFiles('**/package-lock.json') }}
- name: Read .nvmrc
run: echo ::set-output name=NVMRC::$(cat .nvmrc)
id: nvm
- name: Setup Node.js Version
uses: actions/setup-node@v2.1.5
with:
node-version: '${{ steps.nvm.outputs.NVMRC }}'
registry-url: 'https://registry.npmjs.org'
- name: Install Dependencies
run: |
npm ci
- name: Test Next.js Site
run: |
npm run test
- name: Test Next.js Build
run: |
npm run build