Skip to content

Commit

Permalink
Add lock file and set up build and test action
Browse files Browse the repository at this point in the history
  • Loading branch information
mnoah1 committed Jun 11, 2024
1 parent 039299b commit 1343f03
Show file tree
Hide file tree
Showing 3 changed files with 3,031 additions and 1 deletion.
27 changes: 27 additions & 0 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Node.js CI

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
build:

runs-on: ubuntu-latest

strategy:
matrix:
node-version: [18.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: yarn install
- run: yarn test:ci
3 changes: 2 additions & 1 deletion .yarnrc
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
--ignore-engines true
--ignore-engines true
registry "https://registry.yarnpkg.com"
Loading

0 comments on commit 1343f03

Please sign in to comment.