Skip to content

chore: Bump bpmn-js from 13.1.0 to 17.6.0 (#4) #7

chore: Bump bpmn-js from 13.1.0 to 17.6.0 (#4)

chore: Bump bpmn-js from 13.1.0 to 17.6.0 (#4) #7

Workflow file for this run

name: Build, Lint, Test, and Deploy
on:
push:
branches:
- main
jobs:
ci:
name: CI/CD
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v3
- name: Use Node.js 18
uses: actions/setup-node@v3
with:
node-version: 18
- name: Cache node modules
id: cache-nodemodules
uses: actions/cache@v2
env:
cache-name: cache-node-modules
with:
path: node_modules
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Install Dependencies
run: |
npm ci
- name: Lint
run: |
npm run lint
- name: Test
run: |
npm run test
- name: Deploy
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
npm run deploy