Skip to content

Commit

Permalink
Adapt QA job
Browse files Browse the repository at this point in the history
  • Loading branch information
martpie committed Dec 24, 2020
1 parent e91b65c commit 91373f4
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,16 +32,16 @@ jobs:
run: npm ci

- name: 'Test: formatting'
run: 'npm run test:formatting'
run: 'yarn run test:formatting'

- name: 'Test: TS/JS linting'
run: 'npm run test:lint'
run: 'yarn run test:lint'

- name: 'Test: CSS linting'
run: 'npm run test:css'
run: 'yarn run test:css'

- name: Build application
run: npm run build
run: yarn run build

- uses: actions/upload-artifact@v2
with:
Expand Down Expand Up @@ -85,7 +85,7 @@ jobs:
# run: npm ci

# - name: Package Linux/Windows binaries
# run: npm run package:lw
# run: yarn run package:lw
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Expand Down Expand Up @@ -124,10 +124,10 @@ jobs:
path: dist/

- name: Install production dependencies
run: npm ci
run: yarn install --frozen-lockfile

- name: Package macOS binaries
run: npm run package:m
run: yarn run package:m
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Expand Down

0 comments on commit 91373f4

Please sign in to comment.