-
Notifications
You must be signed in to change notification settings - Fork 53
45 lines (41 loc) · 1.27 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
44
45
name: Node.js CI
on:
push:
branches:
- master
pull_request:
jobs:
test-build-release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
# This allows us to work with the repository during the lint step
fetch-depth: 2
- name: Use Node.js 21.x
uses: actions/setup-node@v1
with:
node-version: 21.x
- name: Install npm packages using cache
uses: bahmutov/npm-install@v1
- name: Lint code
# Move everything from latest commit back to staged
run: git reset --soft HEAD^ && yarn lint
# For our info, lint all files but don't mark them as failure
# TODO: remove this once project is typescripted
- name: Lint all code (ignoring errors)
run: yarn lint-all || true
- name: Run type check
run: yarn typecheck
- name: Check i18n messages (en-US and fr)
run: yarn check:i18n-en-fr
- name: Run tests
run: yarn unit
- name: Run a11y tests
run: yarn a11y-test
# at this point, the build is successful
- name: Semantic Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: yarn semantic-release