Skip to content
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
coderoad
/
coderoad-vscode
Public
Notifications
You must be signed in to change notification settings
Fork
43
Star
971
Code
Issues
44
Pull requests
18
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Files
Expand file tree
master
Breadcrumbs
coderoad-vscode
/
.github
/
workflows
/
test.yml
Copy path
View runs
Blame
More file actions
Blame
More file actions
Latest commit
History
History
History
31 lines (31 loc) · 684 Bytes
master
Breadcrumbs
coderoad-vscode
/
.github
/
workflows
/
test.yml
Copy path
Top
File metadata and controls
Code
Blame
31 lines (31 loc) · 684 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
name: CI
on: push
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install modules
run: yarn install
- name: Lint
run: yarn lint
build-extension:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install modules
run: yarn
- name: Run tests
run: yarn test
build-web:
runs-on: ubuntu-latest
env:
SKIP_PREFLIGHT_CHECK: true
steps:
- uses: actions/checkout@v2
- name: Install modules
run: yarn
working-directory: ./web-app
- name: Run tests
run: yarn test
working-directory: ./web-app
You can’t perform that action at this time.