-
-
Notifications
You must be signed in to change notification settings - Fork 12
31 lines (27 loc) · 771 Bytes
/
test.yml
File metadata and controls
31 lines (27 loc) · 771 Bytes
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
name: Test and build
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version-file: .tool-versions
cache: pnpm
- run: |
npm config set '@fortawesome:registry' '${{ secrets.FONTAWESOME_REGISTRY }}'
npm config set '//harding.dev:23435/:_authToken' '${{ secrets.FONTAWESOME_NPM_AUTH_TOKEN }}'
pnpm install
# TODO: code coverage, reporting, break these steps up
- run: pnpm format
- run: pnpm lint
- run: pnpm test
- run: pnpm typecheck
- run: pnpm build