Bump @types/node from 24.3.1 to 24.8.1 #45
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Labctl CI | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
env: | |
NODEVER: 22 | |
jobs: | |
build: | |
name: build & push to labctl repo | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v5 | |
- name: Use Node.js ${{ env.NODEVER }} | |
uses: actions/setup-node@v5 | |
with: | |
node-version: ${{ env.NODEVER }} | |
cache: "npm" | |
- run: npm ci | |
- run: npm test | |
- run: npm run build --if-present | |
- name: Push frontend to labctl | |
uses: cpina/github-action-push-to-another-repository@main | |
env: | |
#SSH_DEPLOY_KEY: ${{ secrets.LABCTL_SSH_DEPLOY_KEY }} | |
API_TOKEN_GITHUB: ${{ secrets.LABCTL_SSH_DEPLOY_KEY }} | |
with: | |
source-directory: "dist" | |
destination-github-username: "labctl" | |
destination-repository-name: "labctl" | |
user-email: [email protected] | |
target-branch: main | |
target-directory: helpers/frontend/html | |
#commit-message: labctl-js |