prettier-plugin-askama-temp.../.github/workflows/node.js.yml

23 lines
446 B
YAML
Raw Normal View History

2022-12-01 20:03:33 +03:00
name: Node.js CI
2022-12-01 20:35:59 +03:00
on: [push]
2022-12-01 20:03:33 +03:00
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
2022-12-01 21:27:58 +03:00
- run: npm install -f
2022-12-01 20:03:33 +03:00
- run: npm run build
2022-12-01 20:41:15 +03:00
- run: npm run test