-
-
Notifications
You must be signed in to change notification settings - Fork 9
34 lines (31 loc) · 875 Bytes
/
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
name: CI
on:
push:
branches:
- main
- 'v*.[0-9]'
pull_request:
permissions: # added using https://github.com/step-security/secure-workflows
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Harden Runner
uses: step-security/harden-runner@8ca2b8b2ece13480cda6dacd3511b49857a23c09 # v2.5.1
with:
disable-sudo: true
egress-policy: block
allowed-endpoints: >
coveralls.io:443
github.com:443
registry.yarnpkg.com:443
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
- name: Install modules
run: yarn
- name: Run tests
run: yarn test --coverage
- name: Coveralls
uses: coverallsapp/github-action@3b7078ee895f74fc267b7b267c88211df59fa816
with:
github-token: ${{ secrets.GITHUB_TOKEN }}