Skip to content

Add version number to package.json and remove bundle scripts #17

Add version number to package.json and remove bundle scripts

Add version number to package.json and remove bundle scripts #17

Workflow file for this run

name: Build
on:
push:
branches:
- main
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: "20"
cache: "yarn"
- name: Install Yarn
run: npm install -g yarn
- name: Install dependencies
run: yarn install
- name: Build
run: yarn build