Don't cover find result with find popup #15
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: CI | |
on: [push, pull_request] | |
permissions: | |
contents: read | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Use Node.js 18 LTS | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '18' | |
- name: Install Gulp | |
run: npm install -g gulp-cli | |
- name: Install other dependencies | |
run: npm install | |
- name: Run tests | |
run: gulp ci-test |