Skip to content

Commit

Permalink
Set up environment
Browse files Browse the repository at this point in the history
  • Loading branch information
compulim committed Sep 20, 2024
1 parent 1a95f79 commit 3a7624b
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/daily-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ on:
schedule:
- cron: 00 03 * * *

defaults:
run:
shell: bash

env:
node-version: 22

jobs:
build:
runs-on: ubuntu-latest
Expand All @@ -15,6 +22,12 @@ jobs:
- name: Checking out for ${{ github.ref }}
uses: actions/checkout@v4

- name: Use Node.js ${{ env.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ env.node-version }}
cache: npm

- run: npx version-from-git --no-git-tag-version

- run: npm ci --no-production
Expand Down

0 comments on commit 3a7624b

Please sign in to comment.