From f7b27dbc889e51ad603288ea73ddbc610aa7fdc5 Mon Sep 17 00:00:00 2001 From: Joost De Cock Date: Sun, 26 Apr 2020 11:05:46 +0200 Subject: [PATCH] chore: Updated workflows to rename Fu to Florence. See #382 --- .../workflows/{tests.fu.yml => tests.florence.yml} | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) rename .github/workflows/{tests.fu.yml => tests.florence.yml} (63%) diff --git a/.github/workflows/tests.fu.yml b/.github/workflows/tests.florence.yml similarity index 63% rename from .github/workflows/tests.fu.yml rename to .github/workflows/tests.florence.yml index dc30bfa7d2f..bbbaa044e95 100644 --- a/.github/workflows/tests.fu.yml +++ b/.github/workflows/tests.florence.yml @@ -1,10 +1,9 @@ -name: Unit tests - Fu +name: Unit tests - Florence on: [push] jobs: test: - runs-on: ubuntu-latest strategy: @@ -19,14 +18,14 @@ jobs: with: node-version: ${{ matrix.node-version }} - name: Install dependencies - run: cd packages/fu && npm install + run: cd packages/florence && npm install env: CI: true - name: Install peer & test dependencies - run: cd packages/fu && npm install @freesewing/core @freesewing/plugin-bundle @freesewing/models @freesewing/pattern-info mocha chai + run: cd packages/florence && npm install @freesewing/core @freesewing/plugin-bundle @freesewing/models @freesewing/pattern-info mocha chai env: CI: true - name: Build pattern - run: cd packages/fu && npm run build + run: cd packages/florence && npm run build - name: Run pattern unit tests - run: cd packages/fu && npm run testci + run: cd packages/florence && npm run testci