Skip to content

#2 bump all npm versions and run prettier:write #38

#2 bump all npm versions and run prettier:write

#2 bump all npm versions and run prettier:write #38

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: build
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x. 20.x]
steps:
- uses: actions/checkout@v2
- name: Use Nodejs
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
env:
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
- name: build
run: npm run build
- name: test
run: npm run test