deps: Update Nu to v0.98 for workflows #191
This file contains 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: Test NU Packages from NPM | |
on: | |
push: | |
branches: | |
- main | |
- develop | |
jobs: | |
test-npm-pkg: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
name: Test Nu@npm on x64-${{matrix.os}} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
registry-url: 'https://registry.npmjs.org' | |
- name: Test Nu Install from NPM Registry | |
shell: bash | |
run: | | |
export NU_TAG=`jq -r .distTag npm/app/package.json` | |
echo "Installing Nu@$NU_TAG from npm..." | |
npm i --location=global "nushell@$NU_TAG" --registry https://registry.npmjs.org | |
echo 'Nu version info:'; nu -c 'version' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |