Skip to content

Bump version before building so we don't have an inconsistency. #127

Bump version before building so we don't have an inconsistency.

Bump version before building so we don't have an inconsistency. #127

Workflow file for this run

name: Node.js Tests
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 14
cache: 'yarn'
- name: Cache node modules
id: cache
uses: actions/cache@v2
with:
path: node_modules
key: ${{ runner.os }}-build-${{ hashFiles('yarn.lock') }}
restore-keys: |
${{ runner.os }}-build-
${{ runner.os }}-
- name: Install Dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: |
yarn install
- name: Run Tests
run: |
yarn test