forked from espressif/esptool-js
-
Notifications
You must be signed in to change notification settings - Fork 3
36 lines (35 loc) · 1011 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
on:
push:
branches:
- jade_diy
pull_request:
branches:
- jade_diy
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
registry-url: 'https://registry.npmjs.org'
- name: Install dependencies and build 🔧
run: npm ci && npm run build
- name: Run lint
run: npm run lint
- name: Run tests
run: npm run test
- name: Package module
run: npm pack
- name: Determine version
id: version
run: |
ESPTOOLJS_VERSION=$(node -p "require('./package.json').version")
echo $ESPTOOLJS_VERSION
echo "version=$ESPTOOLJS_VERSION" >> $GITHUB_OUTPUT
- name: Upload npm package file
uses: actions/upload-artifact@v1
with:
name: esptool-js-${{ steps.version.outputs.version }}.tgz
path: esptool-js-${{ steps.version.outputs.version }}.tgz