-
-
Notifications
You must be signed in to change notification settings - Fork 9
34 lines (31 loc) · 876 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@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1
with:
disable-sudo: true
egress-policy: block
allowed-endpoints: >
coveralls.io:443
github.com:443
registry.yarnpkg.com:443
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
- name: Install modules
run: yarn
- name: Run tests
run: yarn test --coverage
- name: Coveralls
uses: coverallsapp/github-action@0db2c3cdacfee94645baa18e49ff07a7cda3b66b
with:
github-token: ${{ secrets.GITHUB_TOKEN }}