Skip to content

Commit

Permalink
stop test workflow for now
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigopavezi committed Sep 5, 2023
1 parent 0818163 commit 66f48ed
Showing 1 changed file with 45 additions and 45 deletions.
90 changes: 45 additions & 45 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,45 +1,45 @@
name: Test

on: [push, pull_request]

jobs:
test:
runs-on: ${{ matrix.os }}

strategy:
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]

steps:
- name: Check out Git repository
uses: actions/checkout@v3

- name: Install Node.js and NPM
uses: actions/setup-node@v3
with:
node-version: 18
cache: npm

- name: npm install
run: |
npm install --force
- name: npm test
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
npm run package
# npm run lint
# npm exec tsc
# npm test

# Uploads artifacts
- name: 'Upload Artifacts'
uses: actions/upload-artifact@v3
with:
name: ${{ runner.os }} Build
path: |
release/build/*.exe
release/build/*.AppImage
release/build/*.dmg
# name: Test

# on: [push, pull_request]

# jobs:
# test:
# runs-on: ${{ matrix.os }}

# strategy:
# matrix:
# os: [macos-latest, windows-latest, ubuntu-latest]

# steps:
# - name: Check out Git repository
# uses: actions/checkout@v3

# - name: Install Node.js and NPM
# uses: actions/setup-node@v3
# with:
# node-version: 18
# cache: npm

# - name: npm install
# run: |
# npm install --force

# - name: npm test
# env:
# GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# run: |
# npm run package

# # npm run lint
# # npm exec tsc
# # npm test

# # Uploads artifacts
# - name: 'Upload Artifacts'
# uses: actions/upload-artifact@v3
# with:
# name: ${{ runner.os }} Build
# path: |
# release/build/*.exe
# release/build/*.AppImage
# release/build/*.dmg

0 comments on commit 66f48ed

Please sign in to comment.