-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (32 loc) · 954 Bytes
/
Copy pathtest-and-release.yaml
File metadata and controls
37 lines (32 loc) · 954 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
32
33
34
35
36
37
name: Test and Release
on: push
permissions:
contents: write
issues: write
id-token: write
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
jobs:
tests:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version: ">=24.19.0 <25"
cache: "npm"
- name: Install NPM version specified in package.json
uses: ./.github/actions/install-npm
- name: Install dependencies
run: npm ci --no-audit
- name: Compile
run: npx tsc
- name: Check source code with eslint
run: npx eslint .
- name: Check if source code is properly formatted
run: npx prettier -c ./
- name: Test
run: npm test
- name: Semantic release
continue-on-error: true
run: npx semantic-release