Skip to content

feat(122): Add option to choose export format (STL or OBJ) (#127) #317

feat(122): Add option to choose export format (STL or OBJ) (#127)

feat(122): Add option to choose export format (STL or OBJ) (#127) #317

Workflow file for this run

name: Tests
on: [push]
jobs:
test:
name: Lint & Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 1
- uses: actions/setup-node@v2-beta
with:
node-version: '18'
- name: Install Dependencies
run: yarn install --frozen-lockfile
- name: Lint
run: yarn lint
- name: Test
run: yarn test:ember
- name: Visual Tests
if: success()
run: yarn percy exec -- yarn test:ember:visual
env:
PERCY_TOKEN: ${{ secrets.PERCY_TOKEN }}