mirror of
https://github.com/Thream/socketio-jwt.git
synced 2024-11-09 22:20:08 +01:00
03e8d51f9a
fixes #342 It introduces several security fixes to follow best practices.
28 lines
480 B
YAML
28 lines
480 B
YAML
name: 'Build'
|
|
|
|
on:
|
|
push:
|
|
branches: [develop]
|
|
pull_request:
|
|
branches: [master, develop]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: 'ubuntu-latest'
|
|
steps:
|
|
- uses: 'actions/checkout@v3.3.0'
|
|
|
|
- name: 'Use Node.js'
|
|
uses: 'actions/setup-node@v3.6.0'
|
|
with:
|
|
node-version: 'lts/*'
|
|
cache: 'npm'
|
|
|
|
- name: 'Install'
|
|
run: 'npm install'
|
|
|
|
- name: 'Build'
|
|
run: 'npm run build'
|
|
|
|
- run: 'npm run build:typescript'
|