-
Notifications
You must be signed in to change notification settings - Fork 4
44 lines (36 loc) · 872 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
35
36
37
38
39
40
41
42
43
44
name: CI
on:
push:
branches:
- master
- next
pull_request:
workflow_call:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
ci:
name: CI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/prepare-workspace
- name: Run Lint
run: npm run lint
- name: Run Stylelint
run: npm run stylelint
- name: Run Tests
run: npm run test:all
release:
if: github.ref_name == 'master' || github.ref_name == 'next'
needs: [ci]
name: Release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/prepare-workspace
- name: Release new versions
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npm run release:publish