Skip to content

change action to node 16 #73

change action to node 16

change action to node 16 #73

Workflow file for this run

name: TypeScript build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: |
cd server
npm ci
npm run build