Update @fastify/helmet to version 13.0.0 #2215
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Typescript Compile | |
on: | |
push: | |
pull_request: | |
jobs: | |
typescript-compile: | |
name: Typescript Compile | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
submodules: true | |
- name: Install node v16 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- name: Install modules | |
run: yarn install | |
- name: Build application | |
run: yarn run build |