/
githubmirror
/
lodash
Обзор
Документация
Войти
/
githubmirror
/
lodash
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
.github/workflows/browser-testing.yml
39 строк
870 B
Jon Church
chore(ci): sha pin the actions (#6209)
08 май 2026, 04:37
Не верифицирован
08 май 2026, 04:37
a023532
Код
Авторство
О чём код?
name: CI Browsers on: push: branches: [ main ] pull_request: # Run on every PR, regardless of branch branches: [ '*' ] workflow_dispatch: jobs: test-docs: name: Modern Browsers Test runs-on: ubuntu-latest steps: - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1 - name: Install Node uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0 with: node-version: '24' - name: Install dependencies run: | npm install npx playwright install --with-deps npm install -D @playwright/test@latest - name: Build project run: npm run build - name: Start server run: | npx http-server -p 9001 & sleep 2 - name: Run Playwright tests run: npx playwright test