-
Notifications
You must be signed in to change notification settings - Fork 1
53 lines (45 loc) · 1.22 KB
/
verify.yaml
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
44
45
46
47
48
49
50
51
52
53
name: 'Verify'
on:
push:
branches: [dev, test, prod]
pull_request:
branches: [dev]
jobs:
build:
name: 'Lint, typecheck, and test'
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Check types
run: npm run typecheck
- name: Check formatting
run: npm run format:check
# Conditional step for checking translations
- name: Check translations
run: |
if [[ "${{ github.ref }}" == "refs/heads/prod" ]]; then
npm run i18n:compile:strict
else
npm run i18n:compile
fi
- name: Lint code
run: npm run lint
- name: Run test suite
run: npm test
- name: Notify slack on fail
if: failure()
uses: voxmedia/github-action-slack-notify-build@v1
with:
channel_id: builds # TODO: project channel name
status: FAILED
color: danger
env:
SLACK_BOT_TOKEN: ${{ secrets.SLACK_NOTIFICATIONS_BOT_TOKEN }}