Skip to content

Bump braces from 3.0.2 to 3.0.3 (#9) #29

Bump braces from 3.0.2 to 3.0.3 (#9)

Bump braces from 3.0.2 to 3.0.3 (#9) #29

Workflow file for this run

# https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-ruby
# https://github.com/ruby/setup-ruby
name: Test and lint
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '16'
- name: Install dependencies
run: npm install
- name: Run eslint
run: npm run lint
- name: Run tests
run: npm test