Merge pull request #494 from danditomaso/issue-486-are-you-sure-dialog #269
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: | |
branches: | |
- master | |
permissions: | |
contents: write | |
packages: write | |
jobs: | |
build-and-package: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup Deno | |
uses: denoland/setup-deno@v2 | |
with: | |
deno-version: v2.x | |
- name: Install Dependencies | |
run: deno install | |
- name: Run tests | |
run: deno task test | |
- name: Build Package | |
run: deno task build |