MatthiasKainer/lit-element-state-decoupler

View on GitHub
.github/workflows/run-test.yml

Summary

Maintainability
Test Coverage
name: CI

on:
  push:
  pull_request:

jobs:
  test:
    runs-on: ubuntu-latest

    steps:
    # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
    - uses: actions/checkout@v2
      
    - name: Setup Node.js environment
      uses: actions/setup-node@v2
      
    - name: Setup npm 
      run: |
        npm install
      
    - name: Build the project
      run: npm run build
      
    - name: Test the project
      run: npm test