D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
etb1lp46s9ed
/
wabot.whatzi.online
/
node_modules
/
simple-get
/
.github
/
workflows
/
Filename :
ci.yml
back
Copy
name: ci 'on': - push - pull_request jobs: test: name: Node ${{ matrix.node }} / ${{ matrix.os }} runs-on: ${{ matrix.os }} strategy: fail-fast: false matrix: os: - ubuntu-latest node: - '14' steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v2 with: node-version: ${{ matrix.node }} - run: npm install - run: npm run build --if-present - run: npm test