Skip to content

Update version and add changelog #427

Update version and add changelog

Update version and add changelog #427

Workflow file for this run

name: NodeJS with Yarn
on:
push:
branches: [ develop ]
pull_request:
branches: [ develop ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [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 yarn
run: npm install -g yarn
- name: Install deps
run: yarn install
- name: Build
run: yarn run build
- name: Archive production artifacts
uses: actions/upload-artifact@v2
with:
name: dist
path: |
dist