Skip to content

Commit

Permalink
Feature/migrate circle ci (Dash-Industry-Forum#4599)
Browse files Browse the repository at this point in the history
Migrate CI/CD jobs from CircleCI to Github actions
  • Loading branch information
dsilhavy authored Oct 16, 2024
1 parent a638291 commit d65b51d
Show file tree
Hide file tree
Showing 7 changed files with 196 additions and 248 deletions.
243 changes: 0 additions & 243 deletions .circleci/config.yml

This file was deleted.

50 changes: 50 additions & 0 deletions .github/workflows/scheduled_smoke_vector_execution.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
name: scheduled_smoke_vector_execution

on:
schedule:
- cron: '0 0 * * *' # This will run once a day at midnight UTC

jobs:
run_functional_test_single_stream_lambdatest:
if: github.repository == 'Dash-Industry-Forum/dash.js'
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
ref: development
fetch-depth: 0
- name: Cache node modules
id: cache-npm
uses: actions/cache@v3
env:
cache-name: cache-node-modules
with:
# npm cache files are stored in `~/.npm` on Linux/macOS
path: ~/.npm
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- if: ${{ steps.cache-npm.outputs.cache-hit != 'true' }}
name: List the state of node modules
continue-on-error: true
run: npm list
- run: npm install
- run: npm run webpack-build
- name: Start Tunnel
uses: LambdaTest/LambdaTest-tunnel-action@v2
id: tunnel
with:
user: ${{ secrets.LT_USERNAME }}
accessKey: ${{ secrets.LT_ACCESS_KEY }}
tunnelName: "dashjs-tunnel-${{github.run_number}}"
- name: Run functional tests for a single vector on Lambdatest
env:
LT_USERNAME: ${{ secrets.LT_USERNAME }}
LT_ACCESS_KEY: ${{ secrets.LT_ACCESS_KEY }}
run: node_modules/karma/bin/karma start test/functional/config/karma.functional.conf.cjs --configfile=lambdatest-smoke --streamsfile=smoke


40 changes: 40 additions & 0 deletions .github/workflows/verify_branch.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: verify_branch

on:
push:
branches:
- '**' # Triggers on push to any branch

jobs:
build_and_unit_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 'latest'
cache: 'npm'
- name: Cache node modules
id: cache-npm
uses: actions/cache@v3
env:
cache-name: cache-node-modules
with:
# npm cache files are stored in `~/.npm` on Linux/macOS
path: ~/.npm
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- if: ${{ steps.cache-npm.outputs.cache-hit != 'true' }}
name: List the state of node modules
continue-on-error: true
run: npm list
- run: npm install
- run: tsc
- run: npm run lint
- run: npm run test
- run: npm run webpack-build

Loading

0 comments on commit d65b51d

Please sign in to comment.