UNPKG

tasmota-esp-web-tools

Version:
25 lines (20 loc) 625 B
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node # For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions name: CI on: push: branches: [v815] pull_request: branches: [v815] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - name: Use Node.js uses: actions/setup-node@v4 with: node-version: 20 - run: npm install - run: script/build - run: npm exec -- prettier --check src