Skip to content

feat: stop supporting SVN installs as these are impossible #209

feat: stop supporting SVN installs as these are impossible

feat: stop supporting SVN installs as these are impossible #209

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source
# code across multiple Node.js versions, and lint the project.
name: Build & Lint
on:
push:
branches: [main]
pull_request:
branches: [main]
env:
# Default version of Node.js for jobs
node-version: "18"
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ env.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ env.node-version }}
- run: yarn install --frozen-lockfile