Skip to content

Commit

Permalink
renaming
Browse files Browse the repository at this point in the history
  • Loading branch information
atomrc committed Feb 29, 2024
1 parent 8b248cf commit 8eb53c8
Showing 1 changed file with 14 additions and 13 deletions.
27 changes: 14 additions & 13 deletions .github/workflows/build_test.yml
Original file line number Diff line number Diff line change
@@ -1,33 +1,34 @@
name: Build and Test
name: Test

on:
push:
branches: [main, staging, dev]
pull_request:
branches: [main, staging, dev]

concurrency:
group: test-${{ github.ref }}
cancel-in-progress: true

jobs:
build_test:
name: Build and Test
name: test
runs-on: ubuntu-latest
steps:
- name: Cancel Previous Runs
uses: styfle/[email protected]
with:
access_token: ${{github.token}}
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 2
- name: Set up Node.js

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 14.x
- name: Yarn cache
uses: c-hive/[email protected]
node-version: 16.x
cache: 'yarn'

- name: Install dependencies
run: yarn --immutable

- name: Use xvfb-run on Linux
run: sed -i 's/\(electron-mocha \)/xvfb-run \1/g' package.json
- name: Test

- name: test
run: yarn test

0 comments on commit 8eb53c8

Please sign in to comment.