File tree 1 file changed +16
-16
lines changed
1 file changed +16
-16
lines changed Original file line number Diff line number Diff line change 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
5
2
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
10
4
5
+ # Controls when the workflow will run
11
6
on :
12
7
push :
13
- branches : ["release"]
8
+ branches : [ "release" ]
14
9
pull_request :
15
- branches : ["release"]
10
+ branches : [ "release" ]
16
11
17
- permissions :
18
- contents : read
12
+ # Allows you to run this workflow manually from the Actions tab
13
+ workflow_dispatch :
19
14
15
+ # A workflow run is made up of one or more jobs that can run sequentially or in parallel
20
16
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
22
20
runs-on : ubuntu-latest
23
21
22
+ # Steps represent a sequence of tasks that will be executed as part of the job
24
23
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
27
26
28
27
- name : Setup Deno
29
28
uses : denoland/setup-deno@v1
30
29
with :
31
30
deno-version : v1.x
32
31
33
- - name : Build
32
+ # Runs a single command using the runners shell
33
+ - name : Run a one-line script
34
34
run : deno task build
You can’t perform that action at this time.
0 commit comments