Skip to content

Commit

Permalink
add prettier - remove tests
Browse files Browse the repository at this point in the history
  • Loading branch information
smalho01 committed Aug 8, 2024
1 parent 05b63d9 commit 519b37e
Showing 1 changed file with 36 additions and 36 deletions.
72 changes: 36 additions & 36 deletions .github/workflows/ci-workflow.yml
Original file line number Diff line number Diff line change
@@ -1,40 +1,40 @@
# name: Lint and Test
name: Lint and Test

# on: [push, pull_request]
on: [push, pull_request]

# jobs:
# lint:
# name: Check tsc, lint, and prettier
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v1
# - name: Checkout Repository
# uses: actions/checkout@v3
# with:
# submodules: true
# node-version: '18.x'
jobs:
lint:
name: Check tsc, lint, and prettier
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Checkout Repository
uses: actions/checkout@v3
with:
submodules: true
node-version: '18.x'

# - run: npm install
# - run: npm run lint
# - run: npm run prettier
# env:
# CI: true
# test:
# name: Test on node ${{ matrix.node-version }} and ${{ matrix.os }}
# runs-on: ${{ matrix.os }}
# strategy:
# matrix:
# os: [ubuntu-latest, windows-latest, macos-latest]
# node-version: [18]
- run: npm install
- run: npm run lint
- run: npm run prettier
env:
CI: true
# test:
# name: Test on node ${{ matrix.node-version }} and ${{ matrix.os }}
# runs-on: ${{ matrix.os }}
# strategy:
# matrix:
# os: [ubuntu-latest, windows-latest, macos-latest]
# node-version: [18]

# steps:
# - uses: actions/checkout@v1
# - name: Use Node.js ${{ matrix.node-version }}
# uses: actions/setup-node@v1
# with:
# node-version: ${{ matrix.node-version }}
# - run: npm install
# - run: git submodule update --init
# - run: npm test
# env:
# CI: true
# steps:
# - uses: actions/checkout@v1
# - name: Use Node.js ${{ matrix.node-version }}
# uses: actions/setup-node@v1
# with:
# node-version: ${{ matrix.node-version }}
# - run: npm install
# - run: git submodule update --init
# - run: npm test
# env:
# CI: true

0 comments on commit 519b37e

Please sign in to comment.