Skip to content

Bump next from 14.0.1 to 14.1.1 #9

Bump next from 14.0.1 to 14.1.1

Bump next from 14.0.1 to 14.1.1 #9

Workflow file for this run

name: Continuous Integration
on: [push, pull_request]
jobs:
build-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
run: yarn install --frozen-lockfile
- name: Run Linter
run: yarn lint
- name: Run Tests
run: yarn test
- name: Build Project
run: yarn build