Skip to content

fix github actions, upgrade node version #32

fix github actions, upgrade node version

fix github actions, upgrade node version #32

Workflow file for this run

name: crypsi Node CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 19.x, 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: build types
run: yarn build:types
- name: Run test
run: yarn test