Skip to content

Bump version 0.4.1 -> 0.5.0 #93

Bump version 0.4.1 -> 0.5.0

Bump version 0.4.1 -> 0.5.0 #93

Workflow file for this run

name: Node CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.20.2]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install -g yarn@1.22.21
- name: Install Dependencies
run: yarn setup
- name: Build
run: yarn heroku-postbuild
- name: Lint and Test
run: |
yarn lint
yarn test