-
Notifications
You must be signed in to change notification settings - Fork 1
64 lines (53 loc) · 1.46 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
name: CI/CD
on:
push:
branches: ["main"]
permissions:
id-token: write
contents: write
jobs:
# Build
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: "0"
- name: Setting up Node.js 16.x
uses: actions/setup-node@v3
with:
node-version: 16
registry-url: "https://registry.npmjs.org"
scope: "@sundaeswap"
cache: yarn
# Install dependencies
- name: Install
run: yarn install --frozen-lockfile --ignore-scripts && yarn bootstrap
# Lint the files
- name: Lint
run: yarn lint
# Build artifacts
- name: Build
run: yarn build
# Run Tests
- name: Run Tests
run: yarn test
# Git Identity
- name: Git Identity
run: |
git config --global user.name '🤖github-actions🍦'
git config --global user.email '🤖github-actions🍦@users.noreply.github.com'
git remote set-url origin https://x-access-token:${GITHUB_TOKEN}@github.com/$GITHUB_REPOSITORY
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# Bump Versions
- name: Bump versions
run: yarn version:ci
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# Create Release
- name: Publish
run: yarn publish:ci
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_ACCESS_TOKEN }}