21 lines
369 B
YAML
21 lines
369 B
YAML
|
name: Test
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches: [master]
|
||
|
pull_request:
|
||
|
|
||
|
jobs:
|
||
|
test:
|
||
|
timeout-minutes: 60
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
- uses: actions/setup-node@v2
|
||
|
with:
|
||
|
node-version: "16.x"
|
||
|
- name: Install dependencies
|
||
|
run: npm ci
|
||
|
- name: Run next.js build
|
||
|
run: npm run build
|