cal.pub0.org/.github/workflows/build.yml

33 lines
701 B
YAML
Raw Normal View History

2021-08-17 09:35:07 +00:00
name: Build
on: [push]
jobs:
2021-09-02 16:41:15 +00:00
build:
2021-08-17 09:35:07 +00:00
name: Build on Node ${{ matrix.node }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: ["14.x"]
os: [ubuntu-latest]
steps:
- name: Checkout repo
uses: actions/checkout@v2
- name: Use Node ${{ matrix.node }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- name: Install deps
uses: bahmutov/npm-install@v1
2021-09-02 16:41:15 +00:00
- name: Next.js cache
uses: actions/cache@v2
with:
path: ${{ github.workspace }}/.next/cache
key: ${{ runner.os }}-nextjs
- run: yarn test
2021-08-17 09:35:07 +00:00
- run: yarn build