Skip to content

fix: eslint dependency #239

fix: eslint dependency

fix: eslint dependency #239

Workflow file for this run

name: Build, Test, and Deploy
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
node-version: 20.x
- name: Install
uses: bahmutov/npm-install@v1
- name: Build
run: |
npm run build
env:
CI: true
- name: Test
run: |
npm run ci --if-present
env:
CI: true
- name: Prepare and deploy
run: |
npm run deploy -- --name="Swimlane" --email="[email protected]"
if: ${{ github.ref == 'refs/heads/master' }}
env:
CI: true
GH_TOKEN: ${{ secrets.GH_TOKEN }}