-
Notifications
You must be signed in to change notification settings - Fork 5
39 lines (31 loc) · 1.06 KB
/
master-push.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
name: Master push
on:
push:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v2
- name: Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: npm ci --no-optional
- run: npm run lint
- run: npm test
# A build isn't needed here but we want to make sure it works ok before try this during a publish.
- run: npm run build
- name: Configure AWS credentials for uploading docs
uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{ secrets.AWS_DOCS_ACCESS_KEY }}
aws-secret-access-key: ${{ secrets.AWS_DOCS_SECRET_KEY }}
aws-region: us-east-1
# Create typedoc information and upload
- run: npm run doc
- run: aws s3 sync ./docs "s3://j2-docs/$GITHUB_REPOSITORY"