Skip to content

feat: Read in line by line to find data #85

feat: Read in line by line to find data

feat: Read in line by line to find data #85

Workflow file for this run

on:
push:
branches:
- main
pull_request:
name: "Test"
jobs:
test:
name: Test
runs-on: ubuntu-latest
env:
NUXT_FILES_DIR: /tmp/esphome
steps:
- uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
run_install: false
- name: Install Node.js & Cache Dependencies
uses: actions/setup-node@v4
with:
node-version: 'lts/*'
cache: 'pnpm'
- name: Install dependencies
run: |
pnpm install -r
mkdir -p ${{env.NUXT_FILES_DIR}}
- name: Install playwright
working-directory: ./packages/localdeck-configurator
run: pnpm exec playwright install --with-deps
- name: Run linter
run: pnpm run lint
- name: Run tests
run: pnpm run test