This repository has been archived by the owner on Nov 13, 2024. It is now read-only.
Bump braces from 3.0.2 to 3.0.3 #25
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'Run tests' | |
on: | |
pull_request: | |
branches: | |
- 'master' | |
jobs: | |
test: | |
name: 'Tests (Node ${{ matrix.node_version }})' | |
strategy: | |
matrix: | |
node_version: [20] | |
runs-on: 'ubuntu-22.04' | |
steps: | |
- name: 'Checkout the current branch' | |
uses: 'actions/checkout@v3' | |
- name: 'Setup Node' | |
uses: 'actions/setup-node@v3' | |
with: | |
node-version: ${{ matrix.node_version }} | |
- name: 'Install Node modules' | |
run: 'npm ci' | |
- name: 'Run tests' | |
run: 'npm run test' |