Skip to content

Commit

Permalink
Setup CI with GitHub Actions (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
Eskibear authored Jul 31, 2024
1 parent b70bbd3 commit 1dacdd8
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: FeatureManagement-JavaScriptProvider CI

on:
push:
branches:
- main
- preview
- release/*
pull_request:
branches:
- main
- preview
- release/*

jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [18.x, 20.x]

steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: npm run lint
- run: npm run build
- run: npm test

0 comments on commit 1dacdd8

Please sign in to comment.