update dependencies #194
This file contains hidden or 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: Deno | |
on: | |
push: | |
branches: ["master"] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Deno | |
uses: denoland/setup-deno@v2 | |
with: | |
deno-version: v2.x | |
- name: Install Dependencies | |
run: deno install --frozen | |
- name: Build Dictionary | |
run: deno task build-dictionary | |
- name: Check formatting | |
run: deno fmt --check | |
- name: Lint | |
run: deno lint | |
- name: Test | |
run: deno test --parallel |