hedgedoc/.github/workflows/build.yml
renovate[bot] b8cfe1ae43
Update actions/cache action to v2 (#711)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2020-10-25 10:43:52 +01:00

33 lines
745 B
YAML

name: test, build
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: ['12', '14']
name: Test and build with NodeJS ${{ matrix.node }}
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Cache node_modules
uses: actions/cache@v2.1.2
with:
path: node_modules
key: node_modules
- name: Set up NodeJS
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- name: Install dependencies
run: yarn install
- name: Test Project
run: yarn test
- name: Build project
run: yarn build