Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Test Language Properly #119

Merged
merged 13 commits into from
Aug 3, 2023
20 changes: 20 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: CI
on:
- pull_request
jobs:
test:
name: Test
strategy:
matrix:
os: [ubuntu-20.04, macos-latest, windows-2019]
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- name: Checkout the Latest Package Code
uses: actions/checkout@v3
- name: Setup Pulsar Editor
uses: pulsar-edit/[email protected]
- name: Run the headless Pulsar Tests
uses: coactions/[email protected]
with:
run: pulsar --test spec
3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
"description": "Vue component support in Atom",
"repository": "https://github.com/hedefalk/atom-vue",
"license": "MIT",
"scripts": {
"test": "pulsar --test spec"
},
"engines": {
"atom": ">=0.174.0 <2.0.0"
},
Expand Down
Loading