aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/ferdi-builds.yml
diff options
context:
space:
mode:
authorLibravatar Vijay A <vraravam@users.noreply.github.com>2021-12-19 02:49:05 +0530
committerLibravatar Vijay A <vraravam@users.noreply.github.com>2021-12-19 02:49:05 +0530
commit12de79eadc17cecbb29a0b4c2b23cb78d95360ba (patch)
tree638019ce315b2b50cb761473295e7f743ebd5145 /.github/workflows/ferdi-builds.yml
parentUpgrade 'nodejs' to '16.13.1', 'pnpm' to '6.24.1' (diff)
downloadferdium-recipes-12de79eadc17cecbb29a0b4c2b23cb78d95360ba.tar.gz
ferdium-recipes-12de79eadc17cecbb29a0b4c2b23cb78d95360ba.tar.zst
ferdium-recipes-12de79eadc17cecbb29a0b4c2b23cb78d95360ba.zip
Remove duplicate reference to node version for ease of maintenance
Diffstat (limited to '.github/workflows/ferdi-builds.yml')
-rw-r--r--.github/workflows/ferdi-builds.yml40
1 files changed, 0 insertions, 40 deletions
diff --git a/.github/workflows/ferdi-builds.yml b/.github/workflows/ferdi-builds.yml
deleted file mode 100644
index 0572ce4..0000000
--- a/.github/workflows/ferdi-builds.yml
+++ /dev/null
@@ -1,40 +0,0 @@
1# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
2# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
3
4name: Ferdi Recipes Builds
5
6on:
7 # Push to any tracked branches
8 push:
9 branches: [master]
10 # PRs only on master branch
11 pull_request:
12 branches: [master]
13 # Manual trigger from the UI
14 workflow_dispatch:
15 inputs:
16 message:
17 description: 'Message for build'
18 required: true
19
20jobs:
21 build:
22 name: Ferdi Recipes Build
23 runs-on: ubuntu-latest
24 steps:
25 - name: Print latest commit
26 run: echo ${{ github.sha }}
27 - name: Set env vars
28 run: echo "PNPM_CACHE=$HOME/.pnpm-store" >> $GITHUB_ENV
29 - name: Checkout code
30 uses: actions/checkout@v2
31 - name: Use Node.js 16.13.1
32 uses: actions/setup-node@v2
33 with:
34 node-version: 16.13.1
35 - name: Install pnpm
36 uses: pnpm/action-setup@v2.0.1
37 with:
38 version: 6.24.1
39 - name: Install node dependencies recursively
40 run: pnpm i && pnpm run package