Skip to content

Commit

Permalink
temp tests
Browse files Browse the repository at this point in the history
Signed-off-by: Evaldo Felipe <[email protected]>
  • Loading branch information
evaldofelipe committed Oct 2, 2023
1 parent 22b9523 commit f491c21
Showing 1 changed file with 22 additions and 29 deletions.
51 changes: 22 additions & 29 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,9 @@ jobs:
run: yarn install --frozen-lockfile
- name: Build
run: yarn build
# - name: Archive build artifacts
# uses: actions/cache@v3
# with:
# path: |
# dist/*
# key: build-cache-${{ github.sha }}
test:
name: Test
runs-on: ubuntu-latest
needs: build
strategy:
matrix:
ci_index: [0, 1, 2, 3]
Expand All @@ -58,25 +51,25 @@ jobs:
env:
CI_TOTAL: ${{ matrix.ci_total }}
CI_INDEX: ${{ matrix.ci_index }}
lint:
name: Lint
runs-on: ubuntu-latest
needs: build
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Install Additional dependencies
run: |
sudo apt-get update -y
sudo apt-get -y install rsync libudev-dev libusb-1.0-0-dev
- name: Use Node ${{ env.NODE_VERSION }}
uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}
cache: "yarn"
- name: Install packages
run: yarn install --frozen-lockfile
- name: Build
run: yarn build
- name: Lint
run: yarn lint
# lint:
# name: Lint
# runs-on: ubuntu-latest
# needs: build
# steps:
# - name: Checkout repo
# uses: actions/checkout@v3
# - name: Install Additional dependencies
# run: |
# sudo apt-get update -y
# sudo apt-get -y install rsync libudev-dev libusb-1.0-0-dev
# - name: Use Node ${{ env.NODE_VERSION }}
# uses: actions/setup-node@v3
# with:
# node-version: ${{ env.NODE_VERSION }}
# cache: "yarn"
# - name: Install packages
# run: yarn install --frozen-lockfile
# - name: Build
# run: yarn build
# - name: Lint
# run: yarn lint

0 comments on commit f491c21

Please sign in to comment.