Skip to content

Commit 85fac8d

Browse files
committed
update deno.yml
1 parent afd862f commit 85fac8d

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

.github/workflows/deno.yml

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,34 @@
1-
# This workflow uses actions that are not certified by GitHub.
2-
# They are provided by a third-party and are governed by
3-
# separate terms of service, privacy policy, and support
4-
# documentation.
1+
# This is a basic workflow to help you get started with Actions
52

6-
# This workflow will install Deno then run `deno lint` and `deno test`.
7-
# For more information see: https://github.com/denoland/setup-deno
8-
9-
name: Deno
3+
name: CI
104

5+
# Controls when the workflow will run
116
on:
127
push:
13-
branches: ["release"]
8+
branches: [ "release" ]
149
pull_request:
15-
branches: ["release"]
10+
branches: [ "release" ]
1611

17-
permissions:
18-
contents: read
12+
# Allows you to run this workflow manually from the Actions tab
13+
workflow_dispatch:
1914

15+
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
2016
jobs:
21-
test:
17+
# This workflow contains a single job called "build"
18+
build:
19+
# The type of runner that the job will run on
2220
runs-on: ubuntu-latest
2321

22+
# Steps represent a sequence of tasks that will be executed as part of the job
2423
steps:
25-
- name: Setup repo
26-
uses: actions/checkout@v3
24+
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
25+
- uses: actions/checkout@v3
2726

2827
- name: Setup Deno
2928
uses: denoland/setup-deno@v1
3029
with:
3130
deno-version: v1.x
3231

33-
- name: Build
32+
# Runs a single command using the runners shell
33+
- name: Run a one-line script
3434
run: deno task build

0 commit comments

Comments
 (0)