Skip to content

Update action to Node 24 #56

Update action to Node 24

Update action to Node 24 #56

Workflow file for this run

name: 'build-test'
on: # rebuild any PRs and main branch changes
pull_request:
push:
branches:
- main
jobs:
build: # make sure build/ci work properly
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: |
npm install
- run: |
npm run all
test: # make sure the action works on a clean machine without building
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./
with:
version: v0.146.0
- name: Test pscale
run: |
pscale help
pscale --version
# test-mac:
# runs-on: macos-latest
# steps:
# - uses: actions/checkout@v3
# - uses: ./
# - name: Test pscale
# run: pscale help
# test-windows:
# runs-on: windows-latest
# steps:
# - uses: actions/checkout@v3
# - uses: ./
# - name: Test pscale
# run: pscale help