Skip to content

add src/frontend-project-11.code-workspace #25

add src/frontend-project-11.code-workspace

add src/frontend-project-11.code-workspace #25

Workflow file for this run

name: RSS-check
on:
- push
- pull_request
env:
CI: true
jobs:
build:
runs-on: ubuntu-latest
strategy:
# Node versions list
matrix:
node-version: [18.x]
steps:
# Check-out repository under GitHub workspace
# https://github.com/actions/checkout
- uses: actions/checkout@v3
# Step's name
- name: Use Node.js ${{ matrix.node-version }}
# Configures the node version used on GitHub-hosted runners
# https://github.com/actions/setup-node
uses: actions/setup-node@v3
# The Node.js version to configure
with:
node-version: ${{ matrix.node-version }}
- name: npm install, build
# Install and build project
run: |
make install
make build
# Add environment variables
- name: Run linter
run: make lint