Added a whole year of English Daily Articles ! #42
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: Check duplicate daily | |
on: | |
push: | |
branches: | |
- "master" | |
paths: 'public/daily/**' | |
pull_request: | |
branches: | |
- "master" | |
paths: 'public/daily/**' | |
jobs: | |
check_duplicates: | |
name: Search for duplicates in daily | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: denoland/[email protected] | |
with: | |
deno-version: v1.x | |
- name: Deno check duplicate | |
run: deno test --allow-read test/check_duplicate_daily.ts |