aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorLibravatar Vijay A <vraravam@users.noreply.github.com>2022-07-13 11:41:25 +0530
committerLibravatar Vijay Aravamudhan <vraravam@users.noreply.github.com>2022-07-13 11:44:54 +0530
commit2034d72436bbdd17feea5fdf42366acbceb378cb (patch)
tree217a241ae595750209b9038a63819a581f2407a6 /.github
parenttech: Fix prepare-code script (#475) (diff)
downloadferdium-app-2034d72436bbdd17feea5fdf42366acbceb378cb.tar.gz
ferdium-app-2034d72436bbdd17feea5fdf42366acbceb378cb.tar.zst
ferdium-app-2034d72436bbdd17feea5fdf42366acbceb378cb.zip
Update documentation [skip ci]
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/builds.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/builds.yml b/.github/workflows/builds.yml
index 1c0035090..9e58978c2 100644
--- a/.github/workflows/builds.yml
+++ b/.github/workflows/builds.yml
@@ -149,7 +149,7 @@ jobs:
149 - name: Install node dependencies 149 - name: Install node dependencies
150 run: npm i 150 run: npm i
151 - name: Package recipes 151 - name: Package recipes
152 run: pnpm i && pnpm package 152 run: pnpm i && pnpm lint && pnpm reformat-files && pnpm package
153 working-directory: ./recipes 153 working-directory: ./recipes
154 - name: Run linter and tests 154 - name: Run linter and tests
155 run: npm run lint && npm run test 155 run: npm run lint && npm run test
@@ -239,7 +239,7 @@ jobs:
239 run: echo "PACKAGE_VERSION=$(node -p 'require("./package.json").version')" >> $GITHUB_ENV 239 run: echo "PACKAGE_VERSION=$(node -p 'require("./package.json").version')" >> $GITHUB_ENV
240 shell: bash 240 shell: bash
241 - name: Package recipes 241 - name: Package recipes
242 run: pnpm i && pnpm package 242 run: pnpm i && pnpm lint && pnpm reformat-files && pnpm package
243 working-directory: ./recipes 243 working-directory: ./recipes
244 - name: Run linter and tests 244 - name: Run linter and tests
245 run: npm run lint && npm run test 245 run: npm run lint && npm run test
@@ -347,7 +347,7 @@ jobs:
347 max_attempts: 3 347 max_attempts: 3
348 retry_on: error 348 retry_on: error
349 - name: Package recipes 349 - name: Package recipes
350 run: pnpm i && pnpm package 350 run: pnpm i && pnpm lint && pnpm reformat-files && pnpm package
351 working-directory: ./recipes 351 working-directory: ./recipes
352 shell: bash 352 shell: bash
353 - name: Run linter and tests 353 - name: Run linter and tests