Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: NPM Packaging
name: Packaging Tests
on:
push:
branches:
Expand All @@ -8,7 +8,7 @@ on:
- main
jobs:
# Ensure it builds on all platforms
smoketest:
npm_smoketest:
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
Expand All @@ -25,3 +25,14 @@ jobs:
- name: Attempt run
run: npx . --version
working-directory: stylua-npm-bin
pip_smoketest:
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Setup python
uses: actions/setup-python@v6
- name: Attempt install
run: pip install .
Loading