Skip to content

try adding explicit branches #11

try adding explicit branches

try adding explicit branches #11

Workflow file for this run

# 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: CI
on: [push, pull_request]
jobs:
run-ci:
name: Run CI
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Use Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 18.x
- name: Use Deno v1 latest
uses: denoland/setup-deno@v1
with:
deno-version: v1.x
- name: Install CI Dependencies
run: npm ci -w www
- name: Linting
run: npm run lint