Skip to content

feat(asset): Added calibration forecast query builder (#69) #101

feat(asset): Added calibration forecast query builder (#69)

feat(asset): Added calibration forecast query builder (#69) #101

Workflow file for this run

name: Push to main
on:
push:
branches:
- main
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0 # Need history to generate changelog
token: ${{ secrets.CI_GITHUB_TOKEN }}
- name: Setup Node.js environment
uses: actions/setup-node@v3
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Unit tests
run: npm run test:ci
- run: npm run release
env:
GITHUB_TOKEN: ${{ secrets.CI_GITHUB_TOKEN }}