ppm: Update ppm submodule to commit a2ade745bfbc5f #2349
Workflow file for this run
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: Editor tests | |
on: | |
pull_request: | |
push: | |
branches: ['master'] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
ATOM_JASMINE_REPORTER: list | |
jobs: | |
tests: | |
name: Tests | |
if: | | |
!startsWith(github.event.pull_request.title, '[skip-ci]') && | |
!startsWith(github.event.pull_request.title, '[skip-editor-ci]') | |
strategy: | |
matrix: | |
# os: [ubuntu-20.04, macos-latest, windows-2019] | |
os: [ubuntu-20.04, macos-latest] | |
fail-fast: false | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout the latest code | |
uses: actions/checkout@v3 | |
- name: Setup node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- name: Install Dependencies | |
run: yarn install | |
- name: Build Dependencies | |
run: yarn build | |
- name: Run Tests | |
uses: coactions/[email protected] | |
with: | |
run: node script/run-tests.js spec |