Skip to content

[Snyk] Security upgrade nginx from 1.23.2-alpine to 1.25.4-alpine #602

[Snyk] Security upgrade nginx from 1.23.2-alpine to 1.25.4-alpine

[Snyk] Security upgrade nginx from 1.23.2-alpine to 1.25.4-alpine #602

# 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: udacity-c2-basic-server CI
on:
push:
branches: [ master, develop ]
pull_request:
branches: [ master, develop ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x, 12.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 exercises/udacity-c2-basic-server/
- run: cd exercises/udacity-c2-basic-server/ && npm ci
- run: cd exercises/udacity-c2-basic-server/ && npm run build --if-present
# - run: cd exercises/udacity-c2-basic-server/ && npm test
env:
CI: true