Skip to content

Commit

Permalink
Updated deps and set version to 0.1. (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
wrux authored Sep 6, 2023
1 parent b8de6ab commit 2364f67
Show file tree
Hide file tree
Showing 3 changed files with 54 additions and 2,792 deletions.
35 changes: 11 additions & 24 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,29 +1,16 @@
name: CI
name: Build, lint and test

on: [push]

jobs:
build:
name: Build, lint, and test on Node ${{ matrix.node }} and ${{ matrix.os }}

runs-on: ${{ matrix.os }}
strategy:
matrix:
node: ['18.x']
os: [ubuntu-latest]

name: Build, lint and test
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v2

- name: Use Node ${{ matrix.node }}
uses: actions/setup-node@v1
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}

- name: Install deps and build (with cache)
uses: bahmutov/npm-install@v1

- name: Lint
run: npm run lint

- name: Build
run: npm run build
node-version: 18
- run: npm ci
- run: npm run lint
- run: npm run build
Loading

0 comments on commit 2364f67

Please sign in to comment.