8000 github actions: using node v20 · telkomdev/crypsi.js@7ba131b · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

github actions: using node v20 #12

github actions: using node v20

github actions: using node v20 #12

Workflow file for this run

name: CrypsiJs CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Install Yarn
run: npm install -g npm@latest yarn@latest
- name: Install Dependencies
run: yarn
- name: Execute linter
run: npm run lint
- name: Build Typescript
run: yarn build:ts
- name: Build CrypsiJs for browser
run: yarn build:browser:prod
0