-
Notifications
You must be signed in to change notification settings - Fork 0
43 lines (38 loc) · 1002 Bytes
/
ci.yml
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
32
33
34
35
36
37
38
39
40
41
42
43
# This workflow is largely based on
# https://github.com/salsify/ember-css-modules/blob/master/.github/workflows/ci.yml
name: CI
# These trigger patterns courtesy of https://github.com/broccolijs/broccoli/pull/436
on:
pull_request:
push:
# filtering branches here prevents duplicate builds from pull_request and push
branches:
- master
- "v*"
# always run CI for tags
tags:
- "*"
# early issue detection: run CI weekly on Sundays
schedule:
- cron: "0 6 * * 0"
env:
CI: true
jobs:
test-locked-deps:
name: Locked Deps
runs-on: ubuntu-16.04
steps:
- name: Checkout Code
uses: actions/checkout@v1
- name: Install Node
uses: actions/setup-node@v1
with:
node-version: 12
- name: Install Dependencies
run: yarn install --frozen-lockfile
- name: Lint JS
run: yarn lint:js
- name: Lint Types
run: yarn lint:types
- name: Tests
run: yarn test