Skip to content

fix: update action workflow #106

fix: update action workflow

fix: update action workflow #106

Workflow file for this run

name: build
on: ["push", "pull_request"]
jobs:
build:
runs-on: macOS-latest
steps:
- name: Checkout
uses: actions/checkout@v2.3.4
- name: Setup Node.js environment
uses: actions/setup-node@v2.1.5
with:
node-version: '20'
- name: npm install --legacy-peer-deps
run: |
npm install
- name: build
run: |
npm run build
env:
CI: true
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}