-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (32 loc) · 972 Bytes
/
Node.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
name: Node.js Build
on:
push:
branches:
- main
jobs:
build:
permissions: write-all
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '20.2' # Replace with your desired Node.js version
- name: Install esbuild, jest & pkg
run: npm install --save-exact esbuild && npm i --save-exact jest --save-dev && npm i -g pkg
- name: Install Dependencies
run: npm ci
- name: test
run: npm run test
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
- name: Build
run: npm run build
- name: upload
run: gh release create wip-${{ github.sha }} ./dist/* --generate-notes
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}