Skip to content

Merge pull request #33 from MailOnline/chore/enfore_node_protocol_on_… #26

Merge pull request #33 from MailOnline/chore/enfore_node_protocol_on_…

Merge pull request #33 from MailOnline/chore/enfore_node_protocol_on_… #26

Workflow file for this run

name: Build
on:
push:
branches-ignore:
- master
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
node-version: '16'
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '16'
cache: 'yarn'
check-latest: true
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run tests
run: yarn run test
- name: Lint code
run: yarn run lint