Skip to content

Commit

Permalink
Add ci for webrtc-js
Browse files Browse the repository at this point in the history
  • Loading branch information
sirknightj committed Mar 29, 2024
1 parent c53fe29 commit 5eb8029
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/webrtc-js.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Build React Application

on:
push:
branches:
- master
pull_request:
branches:
- master

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [ 18, 20 ]
name: webrtc-js on Node ${{ matrix.node }}
steps:
- name: Check out repository
uses: actions/checkout@v4

- name: Change to project directory
run: cd webrtc-js

- name: Setup node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}

- name: Install dependencies
run: npm install

- name: Build
run: npm build

0 comments on commit 5eb8029

Please sign in to comment.