<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-1102198705656684" crossorigin="anonymous"></script> <!-- sewa mobil murah di lombok --> <ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-1102198705656684" data-ad-slot="1670672916" data-ad-format="auto" data-full-width-responsive="true"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> #2399
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: 'Test: Playground' | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cloning repository | |
uses: actions/checkout@v4 | |
- name: Setting up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 16 | |
cache: npm | |
- name: Installing Node.js packages | |
run: npm ci | |
- name: Running Playground tests | |
run: | | |
npx gulp updateTestResources | |
npm run test:playground -- --colors |