-
-
Notifications
You must be signed in to change notification settings - Fork 5
39 lines (36 loc) · 884 Bytes
/
axis-core.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
name: axis-core
on:
push:
branches:
- "**"
paths:
- .github/workflows/axis-core.yml
- packages/axis-core/**
tags:
- axis-core@**
workflow_dispatch:
defaults:
run:
working-directory: packages/axis-core
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: lts/*
check-latest: true
- run: yarn install --immutable --immutable-cache
- run: yarn build
- run: yarn test
- run: ESLINT_USE_FLAT_CONFIG=false yarn lint
- name: Publish on tag
run: |
cd ../..
yarn install --immutable --immutable-cache
node ./scripts/publish-on-tag.js
if: startsWith(github.ref, 'refs/tags/')
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}