Skip to content

Merge pull request #1731 from jdi-testing/issue_1588-escaping-special… #2384

Merge pull request #1731 from jdi-testing/issue_1588-escaping-special…

Merge pull request #1731 from jdi-testing/issue_1588-escaping-special… #2384

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: CI
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
push:
branches:
- master
- "release_**"
pull_request:
branches:
- master
- "release_**"
jobs:
build_and_test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: npm install, build
run: |
npm ci
npm run build
- name: Archive production artifacts
uses: actions/upload-artifact@v2
with:
name: dist
path: dist