mirror of
https://github.com/kou029w/nodejs-hands-on.git
synced 2025-01-31 06:18:03 +00:00
13 lines
233 B
YAML
13 lines
233 B
YAML
|
name: ci
|
||
|
on:
|
||
|
push:
|
||
|
jobs:
|
||
|
test:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
|
||
|
- name: Install
|
||
|
run: npm ci
|
||
|
- name: Test
|
||
|
run: npm test
|