forked from opentripplanner/otp-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
43 lines (43 loc) · 1.04 KB
/
node-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
jobs:
test-build-release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
persist-credentials: false
- name: Use Node.js 16.x
uses: actions/setup-node@v1
with:
node-version: 16.x
- name: Install npm packages using cache
uses: bahmutov/npm-install@v1
- name: Lint code
run: yarn lint:js
- name: Lint styles
run: yarn lint:styles
- name: i18n check (en-US, fr only)
run: yarn check:i18n-en-fr
- name: Type check
run: yarn typescript
- name: Run tests
run: yarn unit
- name: Run a11y tests
run: yarn a11y-test
- env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
name: Semantic Release
run: yarn semantic-release
name: Node.js CI
"on":
pull_request: null
push:
branches:
- master
- alpha
- beta
- next
- next-major
- "[0-9]+.[0-9]+.x"
- "[0-9]+.x.x"
- "[0-9]+.x"